• 技术文章 >常见问题 >Python常见问题

    Python如何复制文件中的内容

    yangyang2020-05-07 09:41:19原创2896

    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知识请关注Python视频教程栏目。

    专题推荐:python
    上一篇:python中的frame是什么意思? 下一篇:如何保存python程序所生产的数据?

    相关文章推荐

    • 怎样用python计算矩阵乘法?• linux用什么编辑器写python?• python如何求次幂?• python怎么计算列表元素个数

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网