About 1,130,000 results
Open links in new tab
  1. ROBOCOPY command to do an incremental backup - Super User

    I am overwhelmed by the ROBOCOPY documentation. I want to do an incremental backup of my local files to the network drive (M). I want it to run as quickly as possible, with no log file and …

  2. How to use Robocopy to back up all your data in Windows 10: …

    Aug 14, 2019 · If you're looking for a little extra peace of mind, double down on your data backups. This simple Robocopy script leverages a few useful switches to make the task …

  3. Robocopy - Copy directory into another directory - Super User

    May 24, 2017 · 1 Use Robocopy (Robust File Copy) robocopy c:\test d:\test /s /e *.* /s switch is for copying all sub directories and /e switch is for copying all the empty sub directories & *.* …

  4. how to copy file/folder and preserve their creation date on …

    Oct 22, 2022 · One such free tool is Robocopy, which is a built-in command-line tool in Windows. It has a switch (/DCOPY:T) that allows you to preserve the original timestamps, including …

  5. RoboCopy slower than Xcopy? (Windows 10) - Super User

    Feb 12, 2023 · The results in Robocopy vs. XCopy File Copy Performance are much more detailed as regarding performance factors, and there Robocopy achieved better results in 10 …

  6. What does Robocopy mean by tweaked, lonely, and extra?

    145 "Tweaked", "Lonely", and "Extra" refer to RoboCopy "Classes" of files. For each directory processed RoboCopy constructs a list of files matching the Include Filespecs, in both the …

  7. How does Robocopy handle file system links (symbolic links, hard …

    Apr 15, 2021 · 25 The Robocopy docs lists options that control Robocopy's behavior regarding file system links: /sl Don't follow symbolic links and instead create a copy of the link. /sj Don't …

  8. windows - How to speed up robocopy - Super User

    Jun 8, 2017 · I'm working with a Windows-7 computer, who needs to copy a lot of small files from the network (NAS). I used to do this using xcopy command, but due to a file lock problem, I've …

  9. windows - How do I create a log of robocopy actions and save in a …

    Oct 20, 2015 · You can just call robocopy in PowerShell or batch command file and do your file manipulation and have it create the log, then rename the log file on the next line.

  10. How to copy ONLY those files that are not in the destination?

    Aug 25, 2012 · Is it possible to use robocopy to copy only the files that do not exist in destination? robocopy has a /is (include same files) switch. What I am looking for is an /xs switch. If a file …