1 Star 0 Fork 1

ttpc2008/BaiduPCS-Go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
export.go 1.43 KB
一键复制 编辑 原始数据 按行查看 历史
konica 提交于 2018-08-04 22:27 . 更新错误处理, 增加搜索文件
package pcscommand
import (
"container/list"
"fmt"
"github.com/iikira/BaiduPCS-Go/baidupcs"
"path"
"strings"
)
// RunExport 执行导出文件和目录
func RunExport(pcspaths []string, rootPath string) {
pcspaths, err := getAllAbsPaths(pcspaths...)
if err != nil {
fmt.Println(err)
return
}
var (
pcs = GetBaiduPCS()
invalidList = list.New()
)
for _, pcspath := range pcspaths {
getPath := func(p string) string {
if rootPath == "" {
return p
}
// 是一个单独文件
if pcspath == p {
return path.Join(rootPath, strings.TrimPrefix(p, path.Dir(pcspath)))
}
return path.Join(rootPath, strings.TrimPrefix(p, pcspath))
}
var (
d int
cmdStr string
)
pcs.FilesDirectoriesRecurseList(pcspath, baidupcs.DefaultOrderOptions, func(depth int, fd *baidupcs.FileDirectory) {
if fd.Isdir {
if depth > d {
d = depth
} else {
fmt.Printf("BaiduPCS-Go mkdir \"%s\"\n", getPath(fd.Path))
d = 0
}
return
}
cmdStr = fmt.Sprintf("BaiduPCS-Go rapidupload -length=%d -md5=%s \"%s\"\n", fd.Size, fd.MD5, getPath(fd.Path))
if len(fd.BlockList) > 1 {
invalidList.PushBack(cmdStr)
} else {
fmt.Print(cmdStr)
}
})
}
if invalidList.Len() > 0 {
fmt.Printf("\n以下可能无法导出: \n")
fmt.Printf("%s\n", strings.Repeat("-", 100))
for e := invalidList.Front(); e != nil; e = e.Next() {
fmt.Printf("%s", e.Value.(string))
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ttpc2008/BaiduPCS-Go.git
git@gitee.com:ttpc2008/BaiduPCS-Go.git
ttpc2008
BaiduPCS-Go
BaiduPCS-Go
v3.5.4

搜索帮助