## 基础函数
//删除文件
File::drop(string $file, bool $force = true) : void
File::delete(string $file, bool $force = true) : void
//读取指定长度的文件内容
File::read(string $file, int $len) : string
//获得文件内容
File::get(string $file) : string
//追加文件内容
File::append(string $file, $content, bool $force = true) : void
//重写文件|保存文件
File::save(string $file, $content, bool $force = true) : void
File::write(string $file, $content, bool $force = true) : void



