FileEntrySync - Web APIs 编辑

Non-standard

This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

The FileEntrySync interface of the File System API represents a file in a file system. It lets you write content to a file.

Inherits from: EntrySync

About this document

This document was last updated on March 2, 2012 and follows the W3C Specifications (Working Draft) drafted on April 19, 2011.

This specification is more or less abandoned as it didn't get significant traction among browser makers.

Basic concepts

To write content to file, create a FileWriter object by calling createWriter().

Method overview

FileWriterSync createWriter () raises (FileException);
File file () raises (FileException);

Methods

createWriter()

Creates a new FileWriter associated with the file that the FileEntry represents.

void createWriter (
) raises (FileException);
Parameter

None.

Returns
FileWriterSync
Exceptions

This method can raise a FileException with the following codes:

ExceptionDescription
NOT_FOUND_ERRThe file does not exist.
INVALID_STATE_ERRThe file is no longer valid for some reason other than it having been deleted.

file()

Returns a File that represents the current state of the file that this FileEntry represents.

void file (
) raises (FileException);
Parameter

None.

Returns
File
Exceptions

This method can raise a FileException with the following codes:

ExceptionDescription
NOT_FOUND_ERRThe file does not exist.
INVALID_STATE_ERRThe file is no longer valid for some reason other than it having been deleted.

Browser compatibility

BCD tables only load in the browser

See also

Specification:File API: Directories and System SpecificationWD

Reference: File System API

Introduction: Basic Concepts About the File System API

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:23 次

字数:4714

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文