编程语言
首页 > 编程语言> > Python 利用 shutil 模块复制文件(上)

Python 利用 shutil 模块复制文件(上)

作者:互联网

shutil 模块主要有四个文件复制函数。
(1)复制函数 shutil.copyfile(src, dst)。
将源文件 src 复制到目标文件 dst。如果目标位置不可写,则抛出 IOError 异常。例如:

import shutil 
src = 'text.txt' 
dst = 'src.txt' 
shutil.copyfile(src, dst) 

(2)复制函数 shutil.copyfileobj(src,dst[, length])。
copyfile()利用低层的 copyfileobj()实现复制,copyfileobj()的函数规范是:

shutil.copyfileobj(src, dst[, length])

copyfile()的参数是文件名,而 copyfileobj()的参数是文件句柄。此外,copyfileobj()还有第三个参数即缓冲区大小,当该值是正值时,将以该值大小逐块地从源文件读取数据并复制到目的文件中。

标签:src,copyfileobj,copyfile,Python,dst,复制,模块,shutil
来源: https://blog.csdn.net/m0_64429277/article/details/121597660