화이트리스트에있는 파일을 제외하고 robocopy를 사용하여 많은 파일을 이동하려고합니다. 화이트리스트에는 이름이 다른 약 150 개의 파일이 있습니다. 화이트리스트의 파일 이름을 복사하여 붙여 넣을 때 ( /xf
매개 변수 사용) robocopy는 목록을 자릅니다.
c:\test> robocopy src dest *.ext /xf exclude1.ext exclude2.ext exclude3.ext ... exclude 299.ext exclude300.ext
결과 :
-------------------------------------------------------------------------------
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
그리고:
'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.
안타깝게도 화이트리스트의 파일은 직접 선택하여 와일드 카드로 필터링 할 수 없습니다.
이 문제를 해결할 방법이 있습니까?