대용량 파일 복사 robocopy
Robust File Copy로 Window N/T 이후 지원하며 XCopy의 기능을 모두 포함하고 있는 Upgrade 버전이라 볼 수 있다.
Multi Thread(MT) 옵션을 사용하지 않으면 Drag & Drop과 별차이 없으며, Mirroring 기능을 지원해 두 폴더를 동기화 하는 옵션을 사용할 수도 있다.
옵션과 설명등은 아래 블로그에서 확인할 수 있다.
벤치 마크 결과는 아래 링크
http://the-blue-orb.blogspot.kr/2014/04/robocopy-benchmarks.html
GUI가 지원되는 멀티쓰레드 파일 복사 프로그램은 FastCopy, TeraCopy 등이 있다.
50GB의 data로 테스트시 옵션에 따라 아래와 같은 결과 차이가 있는 것을 볼수 있다. /np /nfl /ndl 의 기록 옵션 제거와 mt: 옵션은 반드시 필요하다.
Syntax Copy Time
robocopy <source> <destination> 331 minutes
Drag and Drop 210 minutes
robocopy <source> <destination> /np 198 minutes
robocopy <source> <destination> /np /nfl /ndl 151 minutes
robocopy <source> <destination> /np /nfl /ndl /mt:2 133 minutes
robocopy <source> <destination> /np /nfl /ndl /mt:4 84 minutes
robocopy <source> <destination> /np /nfl /ndl /mt:8 44 minutes
robocopy <source> <destination> /np /nfl /ndl /mt:16 21 minutes
robocopy <source> <destination> /np /nfl /ndl /mt:32 17 minutes
robocopy <source> <destination> /np /nfl /ndl /mt:64 15 minutes
robocopy <source> <destination> /np /nfl /ndl /mt:128 12 minutes