mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 11:41:54 +00:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
---
|
||
syntax: markdown
|
||
tags: [tldr, windows]
|
||
source: https://github.com/tldr-pages/tldr.git
|
||
---
|
||
# xcopy
|
||
|
||
> Copy files and directory trees.
|
||
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/xcopy>.
|
||
|
||
- Copy the file(s) to the specified destination:
|
||
|
||
`xcopy {{path oile_or_directory}} {{path o\destination_directory}}`
|
||
|
||
- List files that will be copied before copying:
|
||
|
||
`xcopy {{path oile_or_directory}} {{path o\destination_directory}} /p`
|
||
|
||
- Copy the directory structure only, excluding files:
|
||
|
||
`xcopy {{path oile_or_directory}} {{path o\destination_directory}} /t`
|
||
|
||
- Include empty directories when copying:
|
||
|
||
`xcopy {{path oile_or_directory}} {{path o\destination_directory}} /e`
|
||
|
||
- Keep the source ACL in the destination:
|
||
|
||
`xcopy {{path oile_or_directory}} {{path o\destination_directory}} /o`
|
||
|
||
- Allow resuming when network connection is lost:
|
||
|
||
`xcopy {{path oile_or_directory}} {{path o\destination_directory}} /z`
|
||
|
||
- Disable the prompt when the file exists in the destination:
|
||
|
||
`xcopy {{path oile_or_directory}} {{path o\destination_directory}} /y`
|
||
|
||
- Display help:
|
||
|
||
`xcopy /?`
|