# Functions
No description provided by the author
Exists 判断文件或目录是否存在[PHP:file_exists].
GetContents 把整个文件读入一个字符串中[PHP:file_get_contents].
GetContentsToByte 把整个文件读入byte中[PHP:file_get_contents].
Info 文件信息.
IsDir 判断所给路径是否为文件夹[PHP:is_dir].
IsFile 判断所给路径是否为文件[PHP:is_file].
PathExist 路径是否存在.
PutContents 把一个字符串写入文件中[覆盖原文件内容][PHP:file_put_contents].
PutContentsByByte 把byte写入文件中[覆盖原文件内容][PHP:file_put_contents].
PutContentsByByteToAppend 把byte写入文件中[追加至原文件][PHP:file_put_contents,FILE_APPEND].
PutContentsToAppend 把一个字符串写入文件中[追加至原文件][PHP:file_put_contents,FILE_APPEND].
Size 文件大小.