热门标签
更多>
搜索结果
查询Tags标签: copyfileobj,共有 2条记录-
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.cop…
2021/11/28 22:12:39 人评论 次浏览 -
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.cop…
2021/11/28 22:12:39 人评论 次浏览