在Python中拷贝文件可以使用shutil
模块
import shutil # 源文件路径 src_file = '/path/to/source/file.txt' # 目标文件路径 dst_file = '/path/to/destination/file.txt' # 使用shutil模块的copy2函数进行拷贝 shutil.copy2(src_file, dst_file)
在这个示例中,shutil.copy2()
函数将源文件拷贝到目标路径,并尝试保持文件的元数据(如时间戳)。
###################
标签:文件,python,copy2,源文件,file,拷贝,shutil From: https://www.cnblogs.com/herd/p/17726614.html