python shutil.copy()用法

Posted 一杯明月

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python shutil.copy()用法相关的知识,希望对你有一定的参考价值。

https://www.cnblogs.com/liuqi-beijing/p/6228561.html

shutil.copyfile(src, dst):复制文件内容(不包含元数据)从src到dst。

DST必须是完整的目标文件名;

如果src和dst是同一文件,就会引发错误shutil.Error。

dst必须是可写的,否则将引发异常IOError。如果dst已经存在,它会被替换。

特殊文件,例如字符或块设备和管道不能使用此功能,因为copyfile会打开并阅读文件。

src和dst的是字符串形式的路径名。

值得注意的是,shutil.copyfile(srcfile,dstfile)里面srcfile和dstfile必须是文件名,不能是文件夹。

 

shutil.ignore_patterns(*patterns) 为copytree的辅助函数,提供glob功能,示例:

from shutil import copytree, ignore_patterns

copytree(source, destination, ignore=ignore_patterns(\'*.pyc\', \'tmp*\'))

以上是关于python shutil.copy()用法的主要内容,如果未能解决你的问题,请参考以下文章

python中shutil和shutil库的用法

shutil.copy()用法

python shutil 模块

python基础-shutil模块

python基础-shutil模块

Python-组织文件