Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
724 views
in Technique[技术] by (71.8m points)

batch file - xcopy wildcard source folder name to destination

I want to copy from a wildcard source folder to a destination folder:

xcopy a:parentfolder
* x:parentfolder

Only folders starting with "n" should therefore be copied to the destination.

Any help to get this working would be much appreciated.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
for /f "delims=" %%a in ('dir /b/ad "a:parentfolder
*" ') do xcopy "a:parentfolder\%%a*" x:parentfolder

As you have it, XCOPY assumes that n* is a filespec, and there's no way to tell it otherwise.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...