fix: 解决计划任务备份根目录下文件夹失败的问题 (#1444)

This commit is contained in:
ssongliu
2023-06-25 13:14:14 +00:00
committed by GitHub
parent f02f32456e
commit 62becf819d
+3
View File
@@ -203,6 +203,9 @@ func handleTar(sourceDir, targetDir, name, exclusionRules string) error {
if strings.Contains(sourceDir, "/") {
itemDir := strings.ReplaceAll(sourceDir[strings.LastIndex(sourceDir, "/"):], "/", "")
aheadDir := sourceDir[:strings.LastIndex(sourceDir, "/")]
if len(aheadDir) == 0 {
aheadDir = "/"
}
path += fmt.Sprintf("-C %s %s", aheadDir, itemDir)
} else {
path = sourceDir