python文件拷贝代码,这段代码演示了通过文件名拷贝和通过文件对象拷贝
import shutil # copy files by name shutil.copyfile('/path/to/file', '/path/to/other/phile') # copy file-objects shutil.copyfileobj(src, dst)
python文件拷贝代码,这段代码演示了通过文件名拷贝和通过文件对象拷贝
import shutil # copy files by name shutil.copyfile('/path/to/file', '/path/to/other/phile') # copy file-objects shutil.copyfileobj(src, dst)