可能重複:
How do I copy files using Windows Batch?如何使用批處理文件複製文件?
嗨,我需要創建一個批處理文件來複制某些文件,如19_1_White.jpg到該目錄中的文件夾?
可能重複:
How do I copy files using Windows Batch?如何使用批處理文件複製文件?
嗨,我需要創建一個批處理文件來複制某些文件,如19_1_White.jpg到該目錄中的文件夾?
您需要使用命令XCOPY 如XCOPY A.JPG C:\文件夾\ A.JPG
在http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/xcopy.mspx?mfr=true看一看你可能想使用過的任何其他交換機。
鏈接已死:) – mirosval 2015-08-06 06:32:18
XCOPY F:\*.* G:\ /C /S /D /Y /I
XCOPY allows for copying of files, directories, and sub directories.
F:\*.* is our source location
G:\ is our destination location
/C tells XCOPY to ignore errors, and finish what can be done
/S tells XCOPY to copy everything including directories and
subdirectories
/D tells XCOPY to only copy source files that are newer than the
destination files (big time saver on the process)
/Y tells XCOPY to overwrite files without asking for confirmation
/I tells XCOPY to automatically create new directories on the
destination, if new directories were created in source.
我不知道該怎麼試試這就是爲什麼我問! – PD24 2011-12-20 11:28:09
您是否嘗試使用Google搜索「windows批量複製文件」?在這裏也有很多問題要求同樣的事情。 – Polynomial 2011-12-20 11:29:29