Forrest logo
back to context overview

xcopy

List of commands for xcopy:

  • xcopy:ai:e0a63 Copiare cartelle
    $ xcopy /E source_folder destination_folder
    try on your machine
    explain this command
  • xcopy:tldr:04384 xcopy: Copy the file(s) to the specified destination.
    $ xcopy ${path\to\file_or_directory} ${path\to\destination_directory}
    try on your machine
    explain this command
  • xcopy:tldr:3aa59 xcopy: Disable the prompt when the file exists in the destination.
    $ xcopy ${path\to\file_or_directory} ${path\to\destination_directory} /y
    try on your machine
    explain this command
  • xcopy:tldr:4285d xcopy: Display detailed usage information.
    $ xcopy /?
    try on your machine
    explain this command
  • xcopy:tldr:6bcfe xcopy: Include empty directories when copying.
    $ xcopy ${path\to\file_or_directory} ${path\to\destination_directory} /e
    try on your machine
    explain this command
  • xcopy:tldr:70863 xcopy: Allow resuming when network connection is lost.
    $ xcopy ${path\to\file_or_directory} ${path\to\destination_directory} /z
    try on your machine
    explain this command
  • xcopy:tldr:754ac xcopy: Keep the source ACL in the destination.
    $ xcopy ${path\to\file_or_directory} ${path\to\destination_directory} /o
    try on your machine
    explain this command
  • xcopy:tldr:98d06 xcopy: List files that will be copied before copying.
    $ xcopy ${path\to\file_or_directory} ${path\to\destination_directory} /p
    try on your machine
    explain this command
  • xcopy:tldr:ccc60 xcopy: Copy the directory structure only, excluding files.
    $ xcopy ${path\to\file_or_directory} ${path\to\destination_directory} /t
    try on your machine
    explain this command
back to context overview