2011-04-18 python 文件copy 之道 大全 (转)

http://blog.csdn.net/clam_queen/article/details/6330598

收藏链接啦,这个博客给出了python几种文件拷贝方式,并且比较了他们间的性能。

补充一点自己的经历:用os.system('copy %s %s'% (srcfile, destfile))方法拷贝, 我的结果是失败. 改换shutil.copy(srcfile, destfile)方法, 就成了! 由于shutil是python自带的额模块, 而其他比如win32file就不是自带的. 我就没去试它们了!

你可能感兴趣的:(python,文件复制,文件拷贝)