That can monitor files or directories for file changes and upload them.
Preferably upload files to certain directories.
Looking for a program.
- FragaGeddon
- Posts: 3229
- Joined: Sun Sep 17, 2000 7:00 am
Looking for a program.
[img]http://www.fragageddon.com/images/albums/userpics/10001/FragaGeddon.png[/img]
you could run xcopy every minute or whatever with the appropriate options
xcopy *.* T:\shared\*.* /E /C /G /H /K /O

xcopy *.* T:\shared\*.* /E /C /G /H /K /O
only problem, can't find a "copy only if destination doesn't exist" switch./E Copies directories and subdirectories, including empty ones.
Same as /S /E. May be used to modify /T.
/C Continues copying even if errors occur.
/G Allows the copying of encrypted files to destination that does
not support encryption.
/H Copies hidden and system files also.
/K Copies attributes. Normal Xcopy will reset read-only attributes.
[ /O Copies file ownership and ACL information. ]
- FragaGeddon
- Posts: 3229
- Joined: Sun Sep 17, 2000 7:00 am
I do have Second Copy but it dosen't do FTP.saturn wrote:but xopcy will copy everything everytime
Syncback is a nifty program that lets you sync folders on every known location known to man.
This one seems alot better than second copy.
Just the ability to have the option to prompt you if a file is missing from either the source or destination is a benefit.
[img]http://www.fragageddon.com/images/albums/userpics/10001/FragaGeddon.png[/img]
- FragaGeddon
- Posts: 3229
- Joined: Sun Sep 17, 2000 7:00 am