About 1,180,000 results
Open links in new tab
  1. 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 & *.* …

  2. 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 …

  3. 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 …

  4. 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 …

  5. Robocopy to copy only new folders and files - Super User

    Command line used: robocopy c:\users\valery\documents j:\robocopy /XO /E /MAXAGE:20131030 /XD Result: A full folders tree is created. Only new files copied, which is the way it's supposed …

  6. 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 …

  7. 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 …

  8. ROBOCOPY - Create Backup Script | Tutorials - Windows 7 Help …

    Mar 5, 2012 · ROBOCOPY is a FOLDER copier, not a FILE copier - the source and destination syntax arguments in ROBOCOPY can only be folder names.

  9. Does Robocopy SKIP copying existing files by default?

    Aug 17, 2016 · By default, Robocopy skips copying existing files if the specific metadata of the files match then those files will be skipped from the "file" copy operation (/COPY:DAT).

  10. Robocopy: how to copy all files in folder newer than a specific date ...

    Jul 31, 2020 · There is this option in Robocopy: /maxage: Specifies the maximum file age (to exclude files older than N days or date). In my case, i want to copy all data put into a new …