I need Robocopy from FTP server syntax command line

Asked By 20 points N/A Posted on -
qa-featured

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.

SHARE
Best Answer by Mcdonald Larimore
Best Answer
Best Answer
Answered By 0 points N/A #137257

I need Robocopy from FTP server syntax command line

qa-featured

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.

Answered By 0 points N/A #137258

I need Robocopy from FTP server syntax command line

qa-featured

 

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

Related Questions