aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/filesystem/index.html
blob: 77b9234e72188944e8a03c7a94207a06eaf7448c (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
---
title: FileSystem
slug: Web/API/FileSystem
translation_of: Web/API/FileSystem
---
<div>
{{APIRef("File System API")}} {{non-standard_header}}
</div>

<p><a href="/en/DOM/File_API/File_System_API">File System API</a> 中,一个 <a href="/en/DOM/File_API/File_System_API/FileSystem">FileSystem 对象</a>代表着一个文件系统。这个对象是调用 <a href="/zh-CN/docs/Web/API/LocalFileSystem#requestFileSystem">requestFileSystem()</a> 成功的一个标志。FileSystem 对象有两个属性。</p>

<h2 id="关于本文档">关于本文档</h2>

<p>本文档的上次更新是 2012 年 3 月 2 日,引用来源是 2011 年 4 月 9 日的草案 <a class="external" href="http://www.w3.org/TR/2011/WD-file-system-api-20110419/">W3C Specifications (Working Draft)</a><br>
 <a href="http://www.w3.org/TR/file-system-api/">该草案</a>似乎已经被放弃了,任何实现不应该参考这份草案,也不该引用它。</p>

<h2 id="基本概念">基本概念</h2>

<p>你可以通过调用 <code><a href="/zh-CN/docs/Web/API/LocalFileSystem#requestFileSystem">window.requestFileSystem()</a></code> 来请求对一个沙盒文件系统的访问权限。调用 <code>requestFileSystem() </code>会创建一个新的沙盒存储空间。成功调用之后会返回一个 <code><a href="/en/DOM/File_API/File_System_API/FileSystem">FileSystem 对象</a></code>。它有两个属性:名称和文件系统的根目录。</p>

<p><code><a href="/en/DOM/File_API/File_System_API/FileSystem">FileSystem 对象</a></code>是你访问文件系统所必须的,所以你最好为它创建一个引用,然后储存起来。</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><a name="attr_name"><code>name</code></a></td>
   <td><code>只读的 DOMString</code></td>
   <td>文件系统的名称。The name must be unique across the list of exposed file systems.</td>
  </tr>
  <tr>
   <td><a name="attr_root"><code>root</code></a></td>
   <td><code>只读的目录实体</code></td>
   <td>文件系统的根目录。</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_Compatibility" name="Browser_Compatibility">浏览器兼容性</h2>

<p>{{ CompatibilityTable() }}</p>

<div id="compat-desktop">
<table class="compat-table">
 <tbody>
  <tr>
   <th>功能</th>
   <th>Chrome</th>
   <th>Firefox (Gecko)</th>
   <th>Internet Explorer</th>
   <th>Opera</th>
   <th>Safari (WebKit)</th>
  </tr>
  <tr>
   <td>基本支持</td>
   <td>13{{ property_prefix("webkit") }}</td>
   <td>{{ CompatNo() }}</td>
   <td>{{ CompatNo() }}</td>
   <td>{{ CompatNo() }}</td>
   <td>{{ CompatNo() }}</td>
  </tr>
 </tbody>
</table>
</div>

<div id="compat-mobile">
<table class="compat-table">
 <tbody>
  <tr>
   <th>功能</th>
   <th>Android</th>
   <th>Chrome for Android</th>
   <th>Firefox Mobile (Gecko)</th>
   <th>IE Phone</th>
   <th>Opera Mobile</th>
   <th>Safari Mobile</th>
  </tr>
  <tr>
   <td>基本支持</td>
   <td>{{ CompatNo() }}</td>
   <td>0.16{{ property_prefix("webkit") }}</td>
   <td>{{ CompatNo() }}</td>
   <td>{{ CompatNo() }}</td>
   <td>{{ CompatNo() }}</td>
   <td>{{ CompatNo() }}</td>
  </tr>
 </tbody>
</table>
</div>

<h2 id="相关链接">相关链接</h2>

<p>规范:{{ spec("http://www.w3.org/TR/file-system-api/", "File API: Directories and System Specification", "WD") }}</p>

<p>引用: <a href="/en/DOM/File_API/File_System_API" title="en/DOM/File_API/File_System_API">File System API</a></p>

<p>介绍: <a href="/en/DOM/File_APIs/Filesystem/Basic_Concepts_About_the_Filesystem_API" title="en/DOM/File_APIs/Filesystem/Basic_Concepts_About_the_Filesystem_API">Basic Concepts About the File System API</a></p>