python拷贝文件的方法有哪些

606
2023/8/21 21:56:50
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

Python拷贝文件的方法有以下几种:

  1. 使用shutil模块的copy()函数:
import shutil
shutil.copy(source, destination)
  1. 使用shutil模块的copy2()函数:
import shutil
shutil.copy2(source, destination)
  1. 使用shutil模块的copyfile()函数:
import shutil
shutil.copyfile(source, destination)
  1. 使用os模块的open()函数进行逐行复制:
import os
with open(source, 'rb') as fsrc, open(destination, 'wb') as fdst:
for line in fsrc:
fdst.write(line)
  1. 使用os模块的read()和write()函数进行全文复制:
import os
with open(source, 'rb') as fsrc, open(destination, 'wb') as fdst:
fdst.write(fsrc.read())
  1. 使用shutil模块的copytree()函数复制整个目录:
import shutil
shutil.copytree(source, destination)

以上方法根据不同的需求和文件类型可以选择适合的方法进行文件拷贝。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: python中字典嵌套遍历的方法是什么