使用bat文件复制文件

时间:2013-09-12 06:13:28

标签: batch-file copy-paste

我正在尝试这样

copy .\abc\\*.* .\Product_109\Course Library\Financial Statements-A Preview\util\

文件保存在“abc”文件夹中并尝试复制到路径(Product_109\Course Library\Financial Statements-A Preview\util\),目标路径由两者之间的空格组成,因此不允许我复制。

请帮助我。

3 个答案:

答案 0 :(得分:0)

您可以尝试以下方法: 使用插入符号(^)转义空格或将路径放置为“”:“

copy .\abc*.* .\Product_109\"Course Library"\"Financial Statements-A Preview"\util\
or
copy .\abc*.* .\Product_109\Course^ Library\Financial^ Statements-A^ Preview\util\
or
copy .\abc*.* ".\Product_109\Course Library\Financial Statements-A Preview\util\"

目前没有Windows机器来测试它。但其中一个选项应该有用。

答案 1 :(得分:0)

在带有空格的路径周围加上双引号:

copy .\abc\*.* ".\Product_109\Course Library\Financial Statements-A Preview\util\"

答案 2 :(得分:0)

在第二个参数周围加上双引号:

copy .\abc\*.* ".\Product_109\Course Library\Financial Statements-A Preview\util\"