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/filesystemfileentry | |
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/filesystemfileentry')
-rw-r--r-- | files/zh-cn/web/api/filesystemfileentry/index.html | 174 |
1 files changed, 174 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/filesystemfileentry/index.html b/files/zh-cn/web/api/filesystemfileentry/index.html new file mode 100644 index 0000000000..8fcca325a1 --- /dev/null +++ b/files/zh-cn/web/api/filesystemfileentry/index.html @@ -0,0 +1,174 @@ +--- +title: FileSystemFileEntry +slug: Web/API/FileSystemFileEntry +translation_of: Web/API/FileSystemFileEntry +--- +<div>{{APIRef("File System API")}}{{Non-standard_header}}</div> + +<p><a href="/en/DOM/File_API/File_System_API" title="en/DOM/File_API/File_System_API">文件系统 API</a> 的<strong><code> FileSystemFileEntry</code></strong> 接口表示文件系统中的文件。它提供了属性,描述文件的属性,以及 {{domxref("FileSystemFileEntry.file", "file()")}} 方法,它创建了可以用于读取文件的 {{domxref("File")}} 对象。</p> + +<div class="note"> +<p>由于这是个非标准 API,它的规范当前并不在标准化过程中。重要的是要记住,并不是所有浏览器都实现了它,并且实现它的浏览器可能仅仅实现一小部分。点击 {{anch("Browser compatibility")}} 来查看更多细节。</p> +</div> + +<h2 id="属性" style="line-height: 30px; font-size: 2.14285714285714rem;">属性</h2> + +<p>从它的父接口 {{domxref("FileSystemEntry")}} 继承属性,但是这个接口没有独特的属性。</p> + +<h2 id="方法">方法</h2> + +<dl> + <dt>{{domxref("FileSystemFileEntry.file", "file()")}}</dt> + <dd>创建新的 {{domxref("File")}} 对象,它可以用于读取文件。</dd> +</dl> + +<h3 id="basic_concepts" name="basic_concepts">废弃的方法</h3> + +<dl> + <dt>{{domxref("FileSystemFileEntry.createWriter", "createWriter()")}} {{obsolete_inline}}</dt> + <dd>创建新的 {{domxref("FileWriter")}} 对象,它允许写入由文件系统条目表示的对象。</dd> +</dl> + +<h2 id="basic_concepts" name="basic_concepts">基本概念</h2> + +<p>为了向文件写入内容,通过调用 {{domxref("FileSystemFileEntry.createWriter", "createWriter()")}} 创建 {{domxref("FileWriter")}} 对象。为了读取文件,通过调用 {{domxref("FileSystemFileEntry.file", "file()")}},获取表示其内容的 {{domxref("File")}} 对象。</p> + +<h3 id="example" name="example">示例</h3> + +<p>下面的代码创建了一个空文件,叫做 "<code>log.txt"</code> (如果不存在的话),并使用文本 "Meow" 来填充。在成功的回调中,设置了事件处理器,来处理 {{event("error")}} <code>error</code> 和 {{event("writeend")}} 事件。通过创建 blob,向其追加文本,以及将 blob 传递给 {{domxref("FileWriter.write()")}},文本数据写入了文件。</p> + +<pre class="brush: js">function onInitFs(fs) { + fs.root.getFile('log.txt', {create: true}, function(fileEntry) { + + // Create a FileWriter object for our FileSystemFileEntry (log.txt). + fileEntry.createWriter(function(fileWriter) { + fileWriter.onwriteend = function(e) { + console.log('Write completed.'); + }; + + fileWriter.onerror = function(e) { + console.log('Write failed: ' + e.toString()); + }; + + // Create a new Blob and write it to log.txt. + var bb = new BlobBuilder(); + bb.append('Meow'); + + fileWriter.write(bb.getBlob('text/plain')); + }, errorHandler); + + }, errorHandler); + +} + +window.requestFileSystem(window.TEMPORARY, 1024*1024, onInitFs, errorHandler);</pre> + +<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>这个 API 没有官方的 W3C 或者 WHATWG 规范。</p> + +<h2 id="Browser_compatibility" name="Browser_compatibility">浏览器兼容性</h2> + +<p>{{ CompatibilityTable }}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Chrome</th> + <th>Edge</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Microsoft Edge</th> + <th>Opera</th> + <th>Safari (WebKit)</th> + </tr> + <tr> + <td>Basic support</td> + <td>13 {{ property_prefix("webkit") }}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{ CompatGeckoDesktop(50) }}</td> + <td>{{ CompatNo }}</td> + <td>{{CompatVersionUnknown}}<sup>[2]</sup></td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + </tr> + <tr> + <td><code>createWriter()</code></td> + <td>13 {{ property_prefix("webkit") }}</td> + <td>{{CompatNo}}</td> + <td>{{ CompatNo }}<sup>[1]</sup></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>Feature</th> + <th>Android</th> + <th>Chrome for Android</th> + <th>Edge</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Phone</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{ CompatNo }}</td> + <td>0.16{{ property_prefix("webkit") }}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatGeckoMobile(50)}}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + </tr> + <tr> + <td><code>createWriter()</code></td> + <td>{{ CompatNo }}</td> + <td>0.16{{ property_prefix("webkit") }}</td> + <td>{{CompatNo}}</td> + <td>{{ CompatNo }}<sup>[1]</sup></td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + <td>{{ CompatNo }}</td> + </tr> + </tbody> +</table> +</div> + +<p>[1] 虽然从 Firefox 50 开始,存在 <code>createWriter()</code> 方法,它是不受支持的,并且会立即报告 <code>NS_ERROR_DOM_SECURITY_ERR </code>错误给错误回调。这个方法在 Firefox 52 中彻底移除。</p> + +<p>[2] Microsoft Edge 实现了这个接口,作为 <code>WebKitEntry</code> 接口的一部分,它是用于 {{domxref("FileSystemEntry")}} 的名称。</p> + +<h2 id="另见">另见</h2> + +<ul> + <li><a href="/en-US/docs/Web/API/File_and_Directory_Entries_API">文件和驱动器条目 API</a></li> + <li><a href="/en-US/docs/Web/API/File_and_Directory_Entries_API/Introduction">文件系统 API 简介</a></li> +</ul> |