I am trying to copy a large file (> 1 GB) from hard disk to usb drive using shutil.copy
. A simple script depicting what I am trying to do is:-
import shutil
src_file = "sourceolargefile"
dest = "destinationdirectory"
shutil.copy(src_file, dest)
It takes only 2-3 min on linux. But the same file copy on same file takes more that 10-15 min under Windows. Can somebody explain why and give some solution, preferably using python code?
Update 1
Saved the file as test.pySource file size is 1 GB. Destinantion directory is in USB drive. Calculated file copy time with ptime. Result is here:-
ptime.exe test.py
ptime 1.0 for Win32, Freeware - http://www.
Copyright(C) 2002, Jem Berkes <jberkes@pc-t
=== test.py ===
Execution time: 542.479 s
542.479 s == 9 min. I don't think shutil.copy
should take 9 min for copying 1 GB file.
Update 2
Health of the USB is good as same script works well under Linux. Calculated time with same file under windows native xcopy.Here is the result.
ptime 1.0 for Win32, Freeware - http://www.pc-tools.net/
Copyright(C) 2002, Jem Berkes <[email protected]>
=== xcopy F:est.iso L:usbest.iso
1 File(s) copied
Execution time: 128.144 s
128.144 s == 2.13 min. I have 1.7 GB free space even after copying test file.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…