I am using rsync to copy ~10GB of small files. What happens if the files in the source directory are modified while rsync is running?

link|improve this question

67% accept rate
feedback

1 Answer

rsync first scans the files and builds a list. so once the file is listed for sync, rsync will sync the latest change of file. but if the file is not listed earlier then it will not sync it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.