Windows

windows命令行複製文件的命令是什麼?

  • March 29, 2018

windows命令提示符複製文件的命令是什麼?

我需要將文件從位置 A 移動到位置 B。此外,如果位置 B 的文件夾不存在,我希望創建它。

我需要這是一個命令行,所以我可以自動化它。

Windows 的版本是 XP。

該命令xcopy是您正在尋找的。例子:

xcopy source destination /E /C /H /R /K /O /Y

上面的命令將複製源到目標、文件和目錄(包括空的),不會停止出錯,將複製隱藏和系統文件,將覆蓋只讀文件,將保留屬性和所有權/ACL 資訊,並將抑制提示覆蓋現有的目標文件。

/E    Copies directories and subdirectories, including empty ones.
     Same as /S /E. May be used to modify /T.
/C    Continues copying even if errors occur.
/H    Copies hidden and system files also.
/R    Overwrites read-only files.
/K    Copies attributes. Normal Xcopy will reset read-only attributes.
/O    Copies file ownership and ACL information.
/Y    Suppresses prompting to confirm you want to overwrite an
     existing destination file.

有關更多資訊類型xcopy /?和您的命令行。

引用自:https://serverfault.com/questions/4639