About 328,000 results
Open links in new tab
  1. windows - Copy files without overwrite - Stack Overflow

    Robocopy, or "Robust File Copy", is a command-line directory replication command. It has been available as part of the Windows Resource Kit starting with Windows NT 4.0, and was …

  2. Can I copy multiple named files on the Windows command line …

    Oct 20, 2022 · You can use 'for' either in a batch file or directly from the command prompt: for %I in (file1.txt file2.txt file3.txt) do copy %I c:\somedir\ Wildcards are supported in the filelist as …

  3. How to copy directories with spaces in the name - Stack Overflow

    I am trying to use robocopy but am unable to make it work because of spaces in the directory names. I am trying to copy 3 directories: My Documents, My Music and My Pictures to 'C:\\test …

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

    Aug 14, 2019 · How to construct the command line in Robocopy The basic command line syntax for Robocopy is similar to the syntax used for the familiar Xcopy command line application …

  5. How to delete empty folders using windows command prompt?

    Oct 20, 2011 · I need to delete all empty folders from my application folder using windows command prompt? How can I create a bat file like that? Please help me.

  6. backup - How can I make robocopy silent in the command line …

    156 I'm using robocopy to do backups with a PowerShell script, and it's pretty awesome, except that I'd like it to only show the progress percentage while it copies and not all of the other …

  7. Copy files to network computers on windows command line

    Feb 4, 2016 · 25 check Robocopy: ROBOCOPY \\server-source\c$\VMExports\ C:\VMExports\ /E /COPY:DAT make sure you check what robocopy parameter you want. this is just an example. …

  8. command line arguments - What is Robocopy's "restartable" …

    robocopy /Z = "copy files in restartable mode". What does this option do? All the documentation I've found simply quotes the on-board manual. What is "restartable" mode, why would …

  9. command line - Use Robocopy to copy only changed files? - Stack …

    Can I use ROBOCOPY for this? Yes, RC should fit your requirements (simplicity, only copy what needed) What exactly does it mean to exclude? It will exclude copying - RC calls it skipping …

  10. Using robocopy with source and destination as variables

    Apr 17, 2017 · Completely new to scripting, tried to find a solution through searching the web but I'm stumped, so asking for help please! I'm trying to use robocopy with a variable as both the …