Saya ingin menggunakan robocopy untuk memindahkan sejumlah besar file, kecuali yang ada dalam daftar putih. Daftar putih berisi sekitar 150 file dengan nama berbeda. Ketika saya menyalin dan menempel nama file daftar putih ke baris perintah (menggunakan /xf
parameter), robocopy memotong daftar.
c:\test> robocopy src dest *.ext /xf exclude1.ext exclude2.ext exclude3.ext ... exclude 299.ext exclude300.ext
Hasil dalam:
-------------------------------------------------------------------------------
ROBOCOPY :: Robust File Copy for Windows
-------------------------------------------------------------------------------
Started : Fri May 24 14:09:31 2013
Source : C:\test\src\
Dest : C:\test\dest\
Files : *.ext
Exc Files : exclude1.ext
exclude2.ext
exclude3.ext
....
....
exclude200.ext
exclude201.ext
exclu
lalu:
'exclude250.ext' is not recognized as an internal or external command,
operable program or batch file.
'exclude251.ext' is not recognized as an internal or external command,
operable program or batch file.
'exclude252.ext' is not recognized as an internal or external command,
operable program or batch file.
'exclude253.ext' is not recognized as an internal or external command,
operable program or batch file.
Sayangnya file dalam daftar putih dipilih sendiri dan tidak dapat difilter oleh wildcard.
Apakah ada cara untuk mengatasi ini?