2011-07-22 129 views

回答

1

像這樣的東西應該這樣做

FOR /F "delims=" %%i IN (c:\temp\paths.txt) DO xcopy "%%i*.jpg" "C:\test\" /s /y 
2

xcopy /?將顯示您可以使用的選項。你可能想要像xcopy C:\path\to\source\directory D:\path\to\destination\ /e /i /y

相關問題