PHP前端开发

python怎么复制文件

百变鹏仔 2天前 #Python
文章标签 文件
在 Python 中,有三种方法可以复制文件:使用 shutil.copyfile() 函数,以目标路径复制源文件。使用 shutil.copy() 函数,递归复制文件或目录。使用 open() 和 write() 函数手动复制文件,但效率较低。

如何用 Python 复制文件

在 Python 中复制文件有几种方法,下面分别介绍:

方法 1:shutil.copyfile()

最简单的方法是使用 shutil.copyfile() 函数。它将一个文件复制到另一个指定位置。语法如下:

立即学习“Python免费学习笔记(深入)”;

shutil.copyfile(src_file, dst_file)

其中:

方法 2:shutil.copy()

shutil.copy() 函数也用于复制文件,但它更通用。它可以递归复制目录和文件。语法如下:

shutil.copy(src, dst)

其中:

方法 3:open() 和 write()

也可以使用 open() 和 write() 函数手动复制文件。语法如下:

with open(src_file, 'rb') as f:    data = f.read()    with open(dst_file, 'wb') as f2:        f2.write(data)

这种方法比较低效,因为它需要读取和写入整个文件。

示例

复制文件 file1.txt 到 file2.txt:

import shutil# 方法 1shutil.copyfile('file1.txt', 'file2.txt')# 方法 2shutil.copy('file1.txt', 'file2.txt')# 方法 3with open('file1.txt', 'rb') as f:    data = f.read()    with open('file2.txt', 'wb') as f2:        f2.write(data)