파일 복사 프로그램 성능 향상 유틸(툴, 프로그램)

- Windows 7 64bit File Copy Speed 

- 윈도우7의 파일 이동,삭제 XP보다 3배이상 느리다. 시스템적인 문제라고 한다.

- 복사는 빠르다.


//=============
// 실제 측정
    - 결과 : 복사는 Windows7 Explorer(탐색기)
        삭제는 Windows XP Explorer(탐색기)

- 복사할때 별도 프로그램 필요 없다.

파일 지울때는 XP를 쓰자(3배이상 빠름)


* 복사
- windows 7
    Explorer - 1:40 - 40초 - 1:15 <-- 제일 빠름
    FastCopy - 1:55 -
    ExtreamCopy - 1:51 - 2:30

- Windows XP
    Explorer - 3:30 ( CPU와 HDD가 저급 ㅜ.ㅜ)

* 삭제 - 차이 없음
- Windows7
    Explorer - 30초
    FastCopy - 30초
    delx.bat - 30초

- Windows XP
    Explorer - 10초 <--- 제일빠름    
    delx.bat - 50초



//================================
//참고
* 파일 지우기(windows 7)
    - 환경 : 전체크기:3.2G , 파일 1950개, 폴더 32개
    - 지우기전에 디스크 캐쉬 지우기 : Sync -r -e E:
        <- 리셋 기능 미비 결국 재부팅 후 측정

    - 측정
    - 기본 탐색기: 10초,
    - rd /q /s %1 : 20초
    - rmdir /s /q %1 : 12초
    - Cygwin 명령창 : rm -r /cygdrive/e/folder : 9초
    - delx.bat : 16초

delx.bat
del /f /s /q %1 > nul
rmdir /s /q %1


//==================================================================
// 아래는 그냥 참고

* 속도 비교
* 15 Free File Copy Tools Tested for the Fastest Transfer Speeds
http://www.raymond.cc/blog/12-file-copy-software-tested-for-fastest-transfer-speed/2/



* FastCopy (64bit), Freeware <--
    http://ipmsg.org/tools/fastcopy.html.en

- 프로그램 다운로드(Download)

FastCopy211_x64, PASS-1.7z

FastCopy211_x86-32bit, PASS-1.7z




    네트웍 : 22.85MB/s, 100초
    XP   : 105MB/s (32bit)
    Win7 : 176MB/s, 지우기 22MB/s


* ExtremeCopy 
    http://www.easersoft.com/
    - 불안정? : 대량지우기에서 가끔 에러(프로그램 크래쉬)

    - 윈도우 탐색기 파일 복사를 대체할수 있음


//========================================

* 파일 빨리 지우는 방법(fast file delete)
> del /f /s /q foldername > nul
> rmdir /s /q foldername


배치파일 작성 (delx.bat)
del /f /s /q %1 > nul
rmdir /s /q %1



반응형
Posted by codens