Golang 的文件复制很蛋疼,有了go-shutil 妈妈再也不用担心我的文件复制了
示例片断
1
2
3
4
5
6
7
8
9
10
11
err := CopyFile("test/testfile", "test/testfile3", false)
if err != nil {
t.Error(err)
return
}
_, err = Copy("test/testfile2", "test/testfile3", false)
if err != nil {
t.Error(err)
return
}
go-shutil 项目地址 https://github.com/termie/go-shutil
本文网址: https://golangnote.com/topic/94.html 转摘请注明来源