diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/api/filesystem | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/web/api/filesystem')
-rw-r--r-- | files/zh-cn/web/api/filesystem/index.html | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/filesystem/index.html b/files/zh-cn/web/api/filesystem/index.html new file mode 100644 index 0000000000..77b9234e72 --- /dev/null +++ b/files/zh-cn/web/api/filesystem/index.html @@ -0,0 +1,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> |