导语:
本文主要介绍了关于Python如何复制文件中的内容的相关知识,包括将文件移到指定文件夹,以及怎么复制文档内容这些编程知识,希望对大家有参考作用。
Python复制文件中内容的方法:
1、使用shutil.copyfile(file1,file2)方法复制
file1是要复制的源文件的文件路径,file2是目标文件的文件路径+文件名。
如下:将C盘A文件夹中的0.png复制到D盘B文件夹中,并重命名为1.png。
src_file = 'C:\\A\\0.png'
dst_file = 'D:\\B\\1.png'
shutil.copyfile(src_file,dst_file)
2、使用.shutil.copy(文件1,文件2)方法复制
def copy(src,dst):
"""copy data and mode bits ("cp src dst")
The destination may be a directory.
"""
if os.path.isdir(dst):
dst = os.path.join(dst,os.path.basename(src))
copyfile(src,dst)
copymode(src,dst)
3、shutil.copyfileobj(文件1,文件2):
将文件1的数据覆盖copy给文件2。
import shutil
f1 = open("1.txt",encoding="utf-8")
f2 = open("2.txt","w",encoding="utf-8")
shutil.copyfileobj(f1,f2)
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python库文件在哪里?如何找到它?09/13
- ♥ 如何用python制作聊天小程序?12/31
- ♥ 如何在 Python 中编写复数10/05
- ♥ python中的Git分支操作10/06
- ♥ 为什么python中没有执行import语句11/12
- ♥ 如何在python3.9中合并字典?12/17
内容反馈