aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/file/webkitrelativepath/index.md
blob: bb229142e841e09f2fc8fbc0cc5739816fc5ad7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
title: File.webkitRelativePath
slug: Web/API/File/webkitRelativePath
tags:
  - File
  - File API
  - File System API
  - File and Directory Entries API
  - 標準外
  - プロパティ
  - 読み取り専用
  - リファレンス
  - ウェブ
  - webkitRelativePath
browser-compat: api.File.webkitRelativePath
translation_of: Web/API/File/webkitRelativePath
---
{{APIRef("File API")}}{{non-standard_header}}

**`File.webkitRelativePath`** は、 {{htmlattrxref("webkitdirectory", "input")}} 属性が設定された {{HTMLElement("input")}} 要素でユーザーが選択したディレクトリーに対するファイルのパスを指定する {{domxref("USVString")}} を持つ読み取り専用のプロパティです。

## 構文

```js
relativePath = File.webkitRelativePath
```

### 値

ユーザーが選択した祖先ディレクトリーを基準にしたファイルのパスを含む {{domxref("USVString")}}。

## 例

この例では、ユーザーが 1 つまたは複数のディレクトリーを選択することができるディレクトリーピッカーが表示されます。 {{domxref("HTMLElement/change_event", "change")}} イベントが発生すると、選択されたディレクトリ階層に含まれるすべてのファイルのリストが生成され、表示されます。

### HTML コンテンツ

```html
<input type="file" id="filepicker" name="fileList" webkitdirectory multiple />
<ul id="listing"></ul>
```

### JavaScript コンテンツ

```js
document.getElementById("filepicker").addEventListener("change", function(event) {
  let output = document.getElementById("listing");
  let files = event.target.files;

  for (let i=0; i<files.length; i++) {
    let item = document.createElement("li");
    item.innerHTML = files[i].webkitRelativePath;
    output.appendChild(item);
  };
}, false);
```

### 結果

{{ EmbedLiveSample('Example') }}

## 仕様書

{{Specifications}}

この API には、公式の W3C または WHATWG 仕様はありません。

## ブラウザーの互換性

{{Compat}}

## 関連情報

- [File and Directory Entries API](/ja/docs/Web/API/File_and_Directory_Entries_API)
- {{domxref("HTMLInputElement.webkitEntries")}}
- {{domxref("HTMLInputElement.webkitdirectory")}}