1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-15 15:53:41 +00:00

copy: create (pseudo copy) empty source directories to destination - fixes #1837

This commit is contained in:
ishuah
2018-04-27 07:14:01 +03:00
committed by Nick Craig-Wood
parent b78af517de
commit 0daced29db
2 changed files with 63 additions and 0 deletions

View File

@@ -464,6 +464,40 @@ func deleteEmptyDirectories(f fs.Fs, entries fs.DirEntries) error {
return nil
}
// This copies the empty directories in the slice passed in and logs
// any errors copying the directories
func copyEmptyDirectories(f fs.Fs, entries fs.DirEntries) error {
if len(entries) == 0 {
return nil
}
var okCount int
for i := len(entries) - 1; i >= 0; i-- {
entry := entries[i]
dir, ok := entry.(fs.Directory)
if ok {
err := f.Mkdir(dir.Remote())
if err != nil {
fs.Errorf(fs.LogDirName(f, dir.Remote()), "Failed to Mkdir: %v", err)
accounting.Stats.Error(err)
} else {
okCount++
}
} else {
fs.Errorf(f, "Not a directory: %v", entry)
}
}
if accounting.Stats.Errored() {
fs.Debugf(f, "failed to copy %d directories", accounting.Stats.GetErrors())
}
if okCount > 0 {
fs.Debugf(f, "copied %d directories", okCount)
}
return nil
}
// renameHash makes a string with the size and the hash for rename detection
//
// it may return an empty string in which case no hash could be made
@@ -622,6 +656,9 @@ func (s *syncCopyMove) run() error {
s.stopTransfers()
s.stopDeleters()
// Create empty fsrc subdirectories in fdst
s.processError(copyEmptyDirectories(s.fdst, s.srcEmptyDirs))
// Delete files after
if s.deleteMode == fs.DeleteModeAfter {
if s.currentError() != nil && !fs.Config.IgnoreErrors {