摘要:
复制文件 func CopyFile(dstFileName string,srcFileName string )(written int64,err error) { srcFile,srcErr := os.Open(srcFileName) if srcErr != nil{ fmt.Pri 阅读全文
摘要:
func PathExists(path string)(bool,error){ _,err := os.Stat(path) if err ==nil{ return true,nil } if os.IsNotExist(err){ return false,nil } return fals 阅读全文
摘要:
常用的几种模式: O_RDONLY int = syscall.O_RDONLY // 只读模式 O_WRONLY int = syscall.O_WRONLY // 只写模式 O_RDWR int = syscall.O_RDWR // 读写模式 O_APPEND int = syscall.O_ 阅读全文
摘要:
文件的读入 1 使用bufio.NewReader( *File) 2 使用 ioutile.readFile(fileName)一次性的读入整个文件 阅读全文