FileSystemEntrySync - 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 FileSystemEntrySync interface of the File and Directory Entries API represents an entry in a file system; it can be either a FileEntrySync or DirectoryEntry. It includes methods for working with files—including copying, moving, removing, and reading files—as well as information about the file it points to—including the file name and its path from the root to the entry.

Warning: This API was never accepted and never became standardized. Various browsers implement pieces of the File and Directory Entries API (otherwise known as the File System API) but you should try to avoid using it.

Basic concepts

The FileSystemEntrySync interface includes methods that you would expect for manipulating files and directories, but it also include a really handy method for getting a URL of the entry: toURL(). It also introduces a new URL scheme: filesystem:.

You can use the filesystem: scheme on Google Chrome to see all the files and folders that are stored in the origin of your app. Just use filesystem: scheme for the root directory of the origin of the app. For example, if your app is in http://ww.html5rocks.com, open filesystem:http://www.html5rocks.com/temporary/ in a tab. Chrome shows a read-only list of all the files and folders stored the origin of your app.

Method overview

Metadata getMetadata () raises (FileException);
FileSystemEntrySync moveTo (in DirectoryEntrySync parent, optional DOMString newName) raises (FileException);
FileSystemEntrySync copyTo(in DirectoryEntrySync parent, optional DOMString newName) raises (FileException);
DOMString toURL();
void remove() raises (FileException);
DirectoryEntrySync getParent();

Attributes

AttributeTypeDescription
filesystemreadonly FileSystemSyncThe file system where the entry resides.
fullpathreadonly DOMString

The full absolute path from the root to the entry.

An absolute path is a relative path from the root directory, prepended with a '/'.

isDirectoryreadonly booleanTrue if FileSystemEntrySync is a directory.
isFilereadonly booleanTrue if the FileSystemEntrySync is a file.
namereadonly DOMStringThe name of the entry, excluding the path leading to it.

Methods

getMetadata()

Look up metadata about this entry. [ todo: specify what kind of metadata ]

Metadata getMetada ()
  raises (FileException);
Parameter
None
Returns
Metadata
Exceptions

This method can raise a FileException with the following codes:

ExceptionDescription
NOT_FOUND_ERRThe entry does not exist.
INVALID_STATE_ERRThe FileSystemSync is no longer valid for some reason besides being deleted.

moveTo()

Move an entry to a different location on the file system. Moving a file over an existing file replaces that existing file. Moving a directory over an existing empty directory replaces that directory. [todo: What if the directory is not empty? ]

[todo: Verify ] This is the same method for renaming files. You can keep it in the same location and then define the newName parameter.

You cannot do the following:

  • Move a directory inside itself or to any child at any depth
  • Move an entry into its parent if a name different from its current one isn't provided
  • Move a file to a path occupied by a directory or move a directory to a path occupied by a file
  • Move any element to a path occupied by a directory that is not empty.
FileSystemEntrySync moveTo (
  in DirectoryEntrySync parent, optional DOMString newName
) raises (FileException);
Parameters
parent
The directory to which to move the entry.
newName
The new name of the entry. If you do not specify a name, the browser preserves the entry's current name.
Returns
FileSystemEntrySync
An object that represents an entry in the file system.
Exceptions

This method can raise a FileException with the following codes:

ExceptionDescription
ENCODING_ERRThe name supplied is invalid, because at least one of the characters is reserved or illegal. Examples include a backslash (\), dot (.), and two dots (..). 
NOT_FOUND_ERRThe target directory does not exist.
INVALID_MODIFICATION_ERR

You tried one of the following disallowed operations:

  • Moving an entry into its parent without changing its name
  • Moving a parent directory into one of its child directories. [todo: verify ]
NO_MODIFICATION_ALLOWED_ERROne of the following is not writable: the source entry, its parent directory, and the target directory.

copyTo()

Copy an entry to a different location on the file system. You cannot copy an entry inside itself if it is a directory, nor can you copy it into its parent without providing a new name. Directory copies are always recursive—that is, all contents of the directory are copied. You cannot change this behavior. Files are duplicated.

void copyTo (
  in DirectoryEntrySync parent, optional DOMString newName
) raises (FileException);
Parameters
parent
The directory where you want the entry to move to.
newName
The new name of the entry. If you do not specify a name, the browser preserves the FileSystemEntrySync's current name.
Returns
FileSystemEntrySync
An object that represents an entry in the file system.
Exceptions

This method can raise a FileException with the following codes:

ExceptionDescription
ENCODING_ERRThe name supplied is invalid, because at least one of the characters is reserved or illegal. Examples include a backslash (\), dot (.), and two dots (..). 
NOT_FOUND_ERRThe target directory does not exist.
INVALID_MODIFICATION_ERR

You tried one of the following disallowed operations:

  • Moving an entry into its parent without changing its name
  • Moving a parent directory into one of its child directories. 
NO_MODIFICATION_ALLOWED_ERROne of the following is not writable: the source entry, its parent directory, and the target directory.
QUOTA_EXCEEDED_ERRThe operation would cause the application to exceed its storage quota. You can ask for a larger persistent storage, which your user must explicitly grant. For more information, see the article on basic concepts

toURL()

Returns a URL that can be used to identify this entry. It exposes a new URL scheme—filesystem:—that you can use to fill src or href attributes. For example, if you wanted to display an image and have its fileEntry, calling toURL() gives you the image file's file system URL. You get something like: filesystem:http://example.com/temporary/lolcat.png.

The file system URL does not expire. Because the method describes a location on disk, the URL is valid for as long as that location exists. You can delete the file and recreate it, and it's all good. 

You can supply the mimeType to simulate the optional MIME type header associated with HTTP downloads.

DOMString toURL ();
Parameter
None.
Returns
DOMString
Exceptions

None

remove()

Deletes a file or directory. You cannot delete an empty directory or the root directory of a file system. If you want to remove an empty directory, use removeRecursively() instead.

void remove (
) raises (FileException);
Parameter

None

Returns
void
Exceptions

This method can raise a FileException with the following codes:

ExceptionDescription
NOT_FOUND_ERRThe target directory does not exist.
INVALID_MODIFICATION_ERR

You tried to remove a directory that is not empty. If you want to remove an empty directory, use removeRecursively() instead.

NO_MODIFICATION_ALLOWED_ERROne of the following is not writable: the source entry, its parent directory, and the target directory.

getParent()

Look up the parent DirectoryEntrySync containing the entry. If this entry is the root of its file system, then the parent is itself.

void getParent ();
Parameter

None

Returns
DirectoryEntrySync
An object that represents a directory in the file system.
Exceptions

None.

See also

Specification:File API: Directories and System SpecificationWD

Reference: File System API

Introduction: Basic Concepts About the File System API

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

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

发布评论

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

词条统计

浏览:123 次

字数:15631

最后编辑:6年前

编辑次数:0 次

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