About 2,490,000 results
Open links in new tab
  1. Is there a way to xcopy just changed or new files? - Super User

    xcopy C:\source X:\destination /s My desktop is a Windows XP machine, and I need to copy to a Windows Server 2008 machine, but this copies everything and the whole site is very large and …

  2. filesystems - copy all files and folders from one drive to another ...

    Aug 24, 2011 · xcopy "C:\SomeFolderName" "D:\SomeFolderName" /h /i /c /k /e /r /y Use the above command. It will definitely work. In this command data will be copied from c:\ to D:, …

  3. windows 7 - xcopy: move files instead of copy? - Super User

    I would like to use xcopy to move, not copy files across a network with the Verify flag. I could not find a switch on xcopy to move files, is there an xmove I can use that has verify? At the momen...

  4. XCOPY- How to copy Source Folder and all subfolder/files but …

    Apr 28, 2022 · All Xcopy/robocopy documentation seems to gloss over copying the folder as if you are performing a right-click copy and paste. I want C:\Folder to copy to D:\Whatever but I want …

  5. How to use xcopy to only copy files if they are newer?

    From typing "help xcopy" at the command line: /D:m-d-y Copies files changed on or after the specified date. If no date is given, copies only those files whose source time is newer than the …

  6. What is the difference between copy and xcopy command?

    May 24, 2019 · The essential difference between the two commands is that when you provide the path of a folder to copy, only the files in that folder will be copied to the specified destination. …

  7. Difference between xcopy and robocopy - Stack Overflow

    Jun 9, 2014 · I'm kind of new to batch scripting. As a newbie I find both both of them useful while scripting What are the key differences between xcopy and robocopy?

  8. How do I track the progress of XCopy command while It's running?

    Sep 24, 2017 · Interesting comment. I thought that xcopy was a part of Windows tools. the switch /l is L not an i, although I now have L in lower case, d and i as switches for that. /l should show …

  9. XCOPY: Overwrite all without prompt in BATCH - Stack Overflow

    Type XCOPY/? at the Command prompt, hit enter and read the help information on the command. Or better yet, try it with ROBOCOPY/? which superseded XCOPY way back when Windows …

  10. batch to copy files with xcopy - Stack Overflow

    Feb 2, 2012 · I have checked some examples on internet but I can't get my (first) batch file to work. I would like to copy automatically my file from a folder to another one but nothing …