blob: c694dcf7865b39c8aec7e08fbf13bd80c333a05a (
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
|
---
title: FileSystem
slug: Web/API/FileSystem
tags:
- 檔案系統
translation_of: Web/API/FileSystem
---
<p>{{APIRef("File System API")}} {{non-standard_header}}</p>
<p><strong><code>FileSystem </code></strong><code>實作文件和目錄介面,描述一個檔案系統。在任何檔案系統上,這個物件包含</code> {{domxref("FileSystemEntry.filesystem", "filesystem")}}的特性。某些網頁瀏覽器提供額外的API去創建和管理檔案系統,如Google Chrome的{{domxref("LocalFileSystem.requestFileSystem", "requestFileSystem()")}}函式。</p>
<div class="note">
<p>此介面並非標準API, 代表規格並未依造標準制定, 因此必須注意並非所有網頁瀏覽器都有實作此介面, 有實作的網頁瀏覽器可能只有實作一小部分. 請在<a href="#browser_compatibility">Browser compatibility</a> 查看更多細節.</p>
</div>
<h2 id="基礎概念">基礎概念</h2>
<p>存取 <code>FileSystem</code> 物件的兩種方法:</p>
<ol>
<li>你可以直接要求一個使用<code>window.requestFileSystem(),</code>只用在你的網頁應用程式的沙盒類型 <code>FileSystem 物件。如果要求成功,將會執行</code>callback handler去接收描述檔案系統的<code>FileSystem物件參數。</code></li>
<li>你可以從檔案系統接口物件取得,透過他的{{domxref("FileSystemEntry.filesystem", "filesystem")}}特性</li>
</ol>
<h2 id="屬性">屬性</h2>
<dl>
<dt>{{domxref("FileSystem.name")}} {{ReadOnlyInline}}</dt>
<dd>{{domxref("USVString")}} 代表檔案系統的名稱. 此名稱在整個已宣告的檔案系統清單中是唯一的。</dd>
<dt>{{domxref("FileSystem.root")}} {{ReadOnlyInline}}</dt>
<dd> {{domxref("FileSystemDirectoryEntry")}} 物件表示檔案系統的根目錄。 透過此物件, 你可以取得權限存取所有檔案系統中的文件和目錄</dd>
</dl>
<h2 id="規範">規範</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('File System API')}}</td>
<td>{{Spec2('File System API')}}</td>
<td>Draft of proposed API</td>
</tr>
</tbody>
</table>
<p>This API has no official W3C or WHATWG specification.</p>
<h2 id="Browser_compatibility" name="Browser_compatibility">瀏覽器相容性</h2>
{{Compat("api.FileSystem")}}
<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><a href="/en-US/docs/Web/API/File_and_Directory_Entries_API/Introduction">Introduction to the File System API</a></li>
<li>{{domxref("FileSystemEntry")}}, {{domxref("FileSystemFileEntry")}}, and {{domxref("FileSystemDirectoryEntry")}}</li>
<li>MSDN 文章: <a href="https://msdn.microsoft.com/library/mt732564">WebKitFileSystem object</a></li>
</ul>
|