Copy a single file using robocopy from a local folder to a
shared folder on the network.
A simple rule of thumb before any disaster strike, don't
interchange the source and the destination.
If source and destination is mistakenly reverse, files might get overwritten. To avoid any loss of data do a test with a dummy file to ensure things work perfectly.
Robocopy [source][destination] [file to be copied]
robocopy c:\local_c_folder \\PC_network\shared_folder
file_to_be_copied_xx.txt
The command will be completed successfully provided the
network access right has no issues.
Robocopy works quite good on large files. A simple copy or xcopy command will also work but the speed might vary.
Robocopy is free it can be accessed from command line. No need to install the resource kit tool if the operating system is Windows 7 or newer version.
Copy files with selected file extension using PowerShell and Robocopy:
$extension = ('.pdf', '.jpg', '.txt')
gci d:\WorkFolde…