+ | name : string |
文件名。
|
+ | size : uint |
文件大小。
|
+ | function close() |
关闭当前文件。 示例
|
+ | function create(fileName : string[, mode : string]) : _bool |
创建文件。
|
+ | function open(fileName : string) : _bool |
打开文件。
|
+ | function read() : _string |
读取文本文件。
|
+ | function readString() : _string |
读取字符串。
|
+ | function write(value) |
在当前指针处向文件里写入数据。
示例
|