Reputation: 2636
In my university project I need to write simple client for windows os, which will synchronize files in folder on PC (with windows OS) and server (Linux).
I decided to use python 2.6. And my question is which library should I use to implement rsync algorithm?
Or perhaps it is better to use c++ instead of python 2.6? Then which library should I use to implement rsync algorithm on c++?
It will be better if you can give me some examples or links. Because I couldn find anything in web.
Upvotes: 1
Views: 2288
Reputation: 33101
Here are some links that might help you:
Or you could just download an rsync client for Windows such as http://www.rsync.net/resources/howto/windows_rsync.html and use Python's subprocess module to call it.
Upvotes: 1