如何使用 x 和 copy 复制多种类型的文件。

huangapple go评论70阅读模式
英文:

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

huangapple
  • 本文由 发表于 2023年5月25日 09:25:44
  • 转载请务必保留本文链接:https://go.coder-hub.com/76328327.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定