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.
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.
However, if the file (ex. an ISO file) and is more than 4GB and the filesystem of the thumbdrive or the storage is FAT system, then robocopy or any methods of copying will not work. Since FAT has a file size limitation of less than 3GB.
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:\WorkFolder $_ | Where-Object {
$extension -contains $_.Extension
} | % { robocopy /s d:\WorkFolder d:\xtra_copy $_.Name }
Source: D:\WorkFolder
Destination: D:\xtra_copy
Change the source and destination to your own path. Please make sure that paths are not reversed or interchanged.
If paths are swap there is a high risk of data corruption or loss of data.
Robocopy works quite good on large files. A simple copy or xcopy command will also work but the speed might vary.
However, if the file (ex. an ISO file) and is more than 4GB and the filesystem of the thumbdrive or the storage is FAT system, then robocopy or any methods of copying will not work. Since FAT has a file size limitation of less than 3GB.
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:\WorkFolder $_ | Where-Object {
$extension -contains $_.Extension
} | % { robocopy /s d:\WorkFolder d:\xtra_copy $_.Name }
Source: D:\WorkFolder
Destination: D:\xtra_copy
Change the source and destination to your own path. Please make sure that paths are not reversed or interchanged.
If paths are swap there is a high risk of data corruption or loss of data.
============================================
Android Excel Keyboard shortcuts guide
https://play.google.com/store/apps/details?id=chrisjoms.myexcelapplicationguide
Linux Android App cheat sheet:
https://play.google.com/store/apps/details?id=com.LinuxMobileKit
Free Android Apps:
Click on links below to find out more:
Soul Refresh Heaven's Dew Fall:
https://play.google.com/store/apps/details?id=soulrefresh.beautiful.prayer
Catholic Rosary Guide for Android:
https://play.google.com/store/apps/details?id=com.myrosaryapp
http://quickbytesstuff.blogspot.sg/2014/09/how-to-recite-rosary.html
Divine Mercy Chaplet Guide (A Powerful prayer):
https://play.google.com/store/apps/details?id=com.dmercyapp
Educational Android App for Kids:
https://play.google.com/store/apps/details?id=com.xmultiplication
https://play.google.com/store/apps/details?id=com.letsmultiply
Android Excel Keyboard shortcuts guide
https://play.google.com/store/apps/details?id=chrisjoms.myexcelapplicationguide
Linux Android App cheat sheet:
https://play.google.com/store/apps/details?id=com.LinuxMobileKit
Free Android Apps:
Click on links below to find out more:
Soul Refresh Heaven's Dew Fall:
https://play.google.com/store/apps/details?id=soulrefresh.beautiful.prayer
Catholic Rosary Guide for Android:
https://play.google.com/store/apps/details?id=com.myrosaryapp
http://quickbytesstuff.blogspot.sg/2014/09/how-to-recite-rosary.html
Divine Mercy Chaplet Guide (A Powerful prayer):
https://play.google.com/store/apps/details?id=com.dmercyapp
Educational Android App for Kids:
https://play.google.com/store/apps/details?id=com.xmultiplication
https://play.google.com/store/apps/details?id=com.letsmultiply
Thanks for sharing this useful content with us. Are you seeking for Fuji xerox printer in Singapore. Look no further, CPC Solution is available here to provide you best Fuji xerox printer. We are a well-known supplier of copier and printer in Singapore.
ReplyDelete