blob: 91e010dd019a25f89ffb199f2574b671788f9df0 (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
---
title: File.webkitRelativePath
slug: Web/API/File/webkitRelativePath
tags:
- File
- File API
- File System API
- File and Directory Entries API
- Non-standard
- Web
- webkitRelativePath
- プロパティ
- リファレンス
- 読み取り専用
- 非標準
translation_of: Web/API/File/webkitRelativePath
---
<p>{{APIRef("File API")}}{{non-standard_header}}</p>
<p><code><strong>File.webkitRelativePath</strong></code> は、{{htmlattrxref("webkitdirectory", "input")}} 属性が設定された {{HTMLElement("input")}} 要素でユーザーが選択したディレクトリに対するファイルのパスを指定する {{domxref("USVString")}} を含む読み取り専用のプロパティです。</p>
<h2 id="構文">構文</h2>
<pre class="syntaxbox notranslate"> <code><em>relativePath = File</em></code>.webkitRelativePath</pre>
<h3 id="値">値</h3>
<p>ユーザーが選択した先祖ディレクトリを基準にしたファイルのパスを含む {{domxref("USVString")}}。</p>
<h2 id="Example" name="Example">例</h2>
<p>この例では、ユーザーが1つまたは複数のディレクトリを選択できるディレクトリピッカーが提示されています。{{event("change")}} イベントが発生すると、選択されたディレクトリ階層に含まれるすべてのファイルのリストが生成され、表示されます。</p>
<h3 id="HTML_コンテンツ">HTML コンテンツ</h3>
<pre class="brush: html notranslate"><input type="file" id="filepicker" name="fileList" webkitdirectory multiple />
<ul id="listing"></ul></pre>
<h3 id="JavaScript_コンテンツ">JavaScript コンテンツ</h3>
<pre class="brush: js notranslate">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);
</pre>
<h3 id="結果">結果</h3>
<p>{{ EmbedLiveSample('Example') }}</p>
<h2 id="仕様">仕様</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">ステータス</th>
<th scope="col">コメント</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('File System API', '#dom-file-webkitrelativepath', 'webkitRelativePath') }}</td>
<td>{{ Spec2('File System API') }}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<p>この API には、公式の W3C または WHATWG 仕様はありません。</p>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザの互換性</h2>
<div class="hidden">このページの互換表は構造化データから生成されます。データに貢献したい場合は <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックし、プルリクエストを送信してください。</div>
<p>{{Compat("api.File.webkitRelativePath")}}</p>
<h2 id="あわせて参照">あわせて参照</h2>
<ul>
<li><a href="/en-US/docs/Web/API/File_and_Directory_Entries_API">File and Directory Entries API</a></li>
<li>{{domxref("HTMLInputElement.webkitEntries")}}</li>
<li>{{domxref("HTMLInputElement.webkitdirectory")}}</li>
</ul>
|