摘要: ioutil标准库中提供了一些常用、方便的IO操作函数 一、相关方法 func ReadAll(r io.Reader) ([]byte, error) func ReadDir(dirname string) ([]os.FileInfo, error) func ReadFile(filenam 阅读全文
posted @ 2020-06-17 12:47 DreamBoy_张亚飞 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 一、Path包 import "path" path实现了对斜杠分隔的路径进行操作的函数。 func IsAbs(path string) bool // 判断是否是一个绝对路径 func Split(path string) (dir, file string) // 将路径分割为路径和文件名 f 阅读全文
posted @ 2020-06-17 12:20 DreamBoy_张亚飞 阅读(1027) 评论(0) 推荐(0) 编辑
摘要: os包提供了操作系统的系列函数,这些接口不依赖平台。设计为Unix风格的,错误处理是go风格的;调用失败会返回错误值而非错误码。通常错误值里包含更多信息。 os包的接口在所有操作系统中都是一致的。非公用的属性可以从操作系统特定的syscall包获取。 一、操作系统基本命令 1. 相关方法 func 阅读全文
posted @ 2020-06-17 11:58 DreamBoy_张亚飞 阅读(676) 评论(0) 推荐(0) 编辑