英文:
how to copy multiple types files with x and copy
问题
我有三种类型的文件(.csv、.sas7bdat、.txt),位于 C:/test 下。我想将 .csv 和 .sas7bdat 复制到 C:/try。我应该如何使用 x "copy..." 命令来做?
我尝试了以下操作,但没有成功:
x "copy c:/test/x.{.csv, .sas7bdat} c:/try/*.*"
英文:
I have three types of files (.csv, .sas7bdat, .txt) under C:/test. I want to copy .csv and .sas7bdat to c:/try. what should I do using x "copy..."
I tried following and it did not work:
x "copy c:/test/x.{.csv, .sas7bdat} c:/try/*.*"
答案1
得分: 3
你可以使用 robocopy
。如果要使用通配符匹配多个具有以下扩展名的文件,请使用 *。
%sysexec robocopy c:\test c:\try x.csv x.sas7bdat x.txt
%sysexec robocopy c:\test c:\try *.csv *.sas7bdat *.txt
英文:
You can use robocopy
. Use * if you want to wildcard many files with the extensions
%sysexec robocopy c:\test c:\try x.csv x.sas7bdat x.txt
%sysexec robocopy c:\test c:\try *.csv *.sas7bdat *.txt
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论