moveDir moves fsrc into fdst
(ctx context.Context, fdst, fsrc fs.Fs, deleteEmptySrcDirs bool, copyEmptySrcDirs bool)
| 1378 | |
| 1379 | // moveDir moves fsrc into fdst |
| 1380 | func moveDir(ctx context.Context, fdst, fsrc fs.Fs, deleteEmptySrcDirs bool, copyEmptySrcDirs bool) error { |
| 1381 | return runSyncCopyMove(ctx, fdst, fsrc, fs.DeleteModeOff, true, deleteEmptySrcDirs, copyEmptySrcDirs, false) |
| 1382 | } |
| 1383 | |
| 1384 | // Transform renames fdst in place |
| 1385 | func Transform(ctx context.Context, fdst fs.Fs, deleteEmptySrcDirs bool, copyEmptySrcDirs bool) error { |
searching dependent graphs…