nsIFileStreams 编辑

 

The nsIFileStreams interface is an input stream that allows you to read from a file.

netwerk/base/public/nsIFileStreams.idlScriptable Please add a summary to this article.   Last changed in Gecko 1.9 (Firefox 3)

Inherits from: nsISupports

Method overview

void init(in nsIFile file, in long ioFlags, in long perm, in long behaviorFlags);

Constants

ConstantsValueDescription
DELETE_ON_CLOSE1<<1If this is set, the file will be deleted by the time the stream is closed. It may be removed before the stream is closed if it is possible to delete it and still read from it. If OPEN_ON_READ is defined, and the file was recreated after the first delete, the file will be deleted again when it is closed again.
CLOSE_ON_EOF1<<2If this is set, the file will close automatically when the end of the file is reached.
REOPEN_ON_REWIND1<<3If this is set, the file will be reopened whenever Seek(0) occurs. If the file is already open and the seek occurs, it will happen naturally. (The file will only be reopened if it is closed for some reason.)

Methods

init()

 void init(
   in nsIFile file,
   in long ioFlags,
   in long perm,
   in long behaviorFlags
 );
Parameters
file
File to read from (must QI to nsILocalFile).
ioFlags
File open flags listed in prio.h (see PR_Open documentation) or -1 to open the file in default mode (PR_RDONLY).
perm
File mode bits listed in prio.h or -1 to use the default value (0).
behaviorFlags
Flags specifying various behaviors of the class (see enumerations in the class).

See also

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

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

发布评论

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

词条统计

浏览:87 次

字数:3266

最后编辑:6年前

编辑次数:0 次

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