Quote: Originally Posted by
ckny 
Wow. That would be really awesome of you. Let me know if you are able to do that. In the meantime I'll be researching it myself.
Chris
Right spent a little bit of time on this, have the basics working - syncing of two directories on two separate machines.
To do this, install ant and goto to the bin directory.
In the bin directory create a file called build.xml
In this file add the following lines :-
<project name="syncfiles" default="synctask">
<target name="synctask">
<sync todir="c:\Dir2\">
<fileset dir="\\thebeast\Pictures\Img0011\"/>
</sync>
</target>
</project>
Change the todir to point to a local drive and change the fileset (from) dir to the remote directory to pick files from.
Save the changes and then simply type "ant" from within the bin directory, this will run the file and sync to two directories.
Theres lots of other options you could add like excluding certain files etc...