replace: add page (#4482)

beep
Calum Dingwall 2020-10-06 08:49:43 -07:00 committed by GitHub
parent 766024c4a5
commit ffa4c6b7f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 37 additions and 0 deletions

37
pages/windows/replace.md Normal file
View File

@ -0,0 +1,37 @@
# replace
> Replace files.
> See also: `robocopy`, `move`, `copy`, and `del`.
> More information: <https://docs.microsoft.com/windows-server/administration/windows-commands/replace>.
- Replace the destination file with the one from the source directory:
`replace {{path/to/file_or_directory}} {{path/to/destination}}`
- Add files to the destination directory instead of replacing existing files:
`replace {{path/to/file_or_directory}} {{path/to/destination}} /a`
- Interactively copy multiple files, with a prompt before replacing or adding a destination file:
`replace {{path/to/file_or_directory}} {{path/to/destination}} /p`
- Replace even read only files:
`replace {{path/to/file_or_directory}} {{path/to/destination}} /r`
- Wait for you to insert a disk before it replaces files (originally to allow inserting a floppy disk):
`replace {{path/to/file_or_directory}} {{path/to/destination}} /w`
- Replace all files in subfolders of the destination:
`replace {{path/to/file_or_directory}} {{path/to/destination}} /s`
- Replace only files in the destination directory which are older than the files in the source directory:
`replace {{path/to/file_or_directory}} {{path/to/destination}} /u`
- Display detailed usage information:
`replace /?`