mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 18:26:02 +02:00
xcopy: add German translation (#9009)
This commit is contained in:
parent
b859795d16
commit
1c0cbb4861
1 changed files with 36 additions and 0 deletions
36
pages.de/windows/xcopy.md
Normal file
36
pages.de/windows/xcopy.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# xcopy
|
||||
|
||||
> Kopieren von Dateien und Verzeichnisbäumen.
|
||||
> Weitere Informationen: <https://learn.microsoft.com/windows-server/administration/windows-commands/xcopy>.
|
||||
|
||||
- Kopieren der Datei(en) an den angegebenen Zielort:
|
||||
|
||||
`xcopy {{pfad/zu/datei_oder_verzeichnis}} {{pfad/zum/ziel}}`
|
||||
|
||||
- Auflisten der zu kopierenden Dateien vor dem Kopieren
|
||||
|
||||
`xcopy {{pfad/zu/datei_oder_verzeichnis}} {{pfad/zum/ziel}} /p`
|
||||
|
||||
- Kopieren der Verzeichnisstruktur ohne Dateien:
|
||||
|
||||
`xcopy {{pfad/zu/datei_oder_verzeichnis}} {{pfad/zum/ziel}} /t`
|
||||
|
||||
- Leere Verzeichnisse beim Kopieren einbeziehen:
|
||||
|
||||
`xcopy {{pfad/zu/datei_oder_verzeichnis}} {{pfad/zum/ziel}} /e`
|
||||
|
||||
- Beibehalten der Quell-Zugriffsrichtlinien (ACL) im Ziel Verzeichniss:
|
||||
|
||||
`xcopy {{pfad/zu/datei_oder_verzeichnis}} {{pfad/zum/ziel}} /o`
|
||||
|
||||
- Wiederaufnahme des Vorgangs bei Unterbrechung der Netzwerkverbindung zulassen:
|
||||
|
||||
`xcopy {{pfad/zu/datei_oder_verzeichnis}} {{pfad/zum/ziel}} /z`
|
||||
|
||||
- Unterdrückt die Eingabeaufforderung, um zu bestätigen, dass Sie eine vorhandene Zieldatei überschreiben möchten:
|
||||
|
||||
`xcopy {{pfad/zu/datei_oder_verzeichnis}} {{pfad/zum/ziel}} /y`
|
||||
|
||||
- Zeigt die Hilfe an der Eingabeaufforderung an:
|
||||
|
||||
`xcopy /?`
|
Loading…
Add table
Reference in a new issue