2020
12-22
12-22
Golang 实现复制文件夹同时复制文件
Golang复制文件夹,包括文件夹中的文件/***拷贝文件夹,同时拷贝文件夹中的文件*@paramsrcPath需要拷贝的文件夹路径:D:/test*@paramdestPath拷贝到的位置:D:/backup/*/funcCopyDir(srcPathstring,destPathstring)error{//检测目录正确性ifsrcInfo,err:=os.Stat(srcPath);err!=nil{fmt.Println(err.Error())returnerr}else{if!srcInfo.IsDir(){e:=errors.New("srcPath不是一个正确的目录...
继续阅读 >