Taken from the Documentation
"When doing anything which involves a directory listing (e.g. sync
, copy
, ls
- in fact nearly every command), rclone normally lists a directory and processes it before using more directory lists to process any subdirectories. This can be parallelised and works very quickly using the least amount of memory."
So is my understanding correct that if rclone is currently transferring from sub1:
top/
├── sub1
└── sub2
sub2 (depending on parallelism) may not have been listed yet so a file removal from sub2 may not induce a transfer failure (or be detected)?
But if I have a flat structure:
archive/
├── archive1.tgz
├── archive2.tgz
└── archive3.tgz
If archive has been listed, then any file removal after that but before/during transfer will result in a transfer failure?