Asked By
Donna Davis
20 points
N/A
Posted on - 05/20/2013
Hi,
I'm new to Robocopy and I need help. I need to copy NTFS files from a local volume then mirror the entire content to an FTP server. Can someone help me with Robocopy from FTP server syntax command line? I'm on Windows 7 64 bit. Any help would be much appreciated.
Thanks in advance.
I need Robocopy from FTP server syntax command line
Hello Donna,
Since you are new to Robocopy, you are suggested to first completely understand how this tool works. This tool moves your data from source to destination, so you must be fully aware of the functionality of this software before start using it in order to avoid any data loss. Refer to the PDF file attached to this comment to understand the nature and working of this software and this pdf contains all the commands (with full description) available with this software.
I need Robocopy from FTP server syntax command line
Â
Hello Davis
Robocopy has remarked different copy syntax from others such as Xcopy. This is how it works:
·        To copy files from file A to B
Robocopy C:UserFolderA Â C:FolderBackupB
·        To copy files from computer X to computer Z
ROBOCOPY \ComputerXreports \ComputerZbackup *.doc /S
·        To mirror files from A to B
Robocopy \AShare \BShare /MIR /FFT /Z /XA:H /W:5
The THIRD example is what I think suits your case