Documentation ¶
Index ¶
- func GetDirFiles(dir string) ([]string, error)
- func PathExists(path string) bool
- func ReadFileWithBuffer(filePath string, bufferSize int, readCallback func(b []byte)) error
- func UnzipBytes(zipFileBytes []byte, destDir string) error
- func UnzipFile(zipFilePath string, destDir string) error
- func ZipDir(dirPath string, savePath string) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetDirFiles ¶
GetDirFiles 获取目录下的文件 参数 dir: 目录的路径 返回值: 目录下的文件路径(用dir拼接,dir是绝对路径就是绝对路径,dir是相对路径就是相对路径)和错误
func PathExists ¶
PathExists 检查对应路径的文件或目录是否存在 参数: path: 文件或目录的路径 返回值: 对应路径的文件或目录是否存在
func ReadFileWithBuffer ¶ added in v1.1.5
ReadFileWithBuffer 带缓冲读文件,一般用于大文件读取 参数 filePath: 文件的路径 bufferSize: 缓冲大小,每次最多读取的字节数 readCallback: 每次读取回调 返回值: 错误
func UnzipBytes ¶
UnzipBytes 解压zip文件 参数 zipFileBytes: zip文件的字节内容 destDir: 解压缩的目的目录 返回值: 错误
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.