首页 > 其他 > 详细

文件的拷贝

时间:2019-12-03 23:05:19      阅读:85      评论:0      收藏:0      [点我收藏+]
import os
def fileCopy(srcPath,desPath):
    # 判断拷贝文件是否存在
    if not os.path.exists(srcPath):
        print("{}文件不存在".format(srcPath))
        return
    # 判断是否是文件
    if not os.path.isfile(srcPath):
        print("{}不是文件".format(srcPath))
        return
    # 打开源文件和目标文件
    srcFile = open(srcPath,"rb")
    desFile = open(desPath,"wb")
    # 获取文件大小,一字节为单位
    size = os.path.getsize(srcPath)
    while size > 0:
    # 读取1024字节
         content = srcFile.read(1024)
    # 写入
         desFile.write(content)
         size -= 1024
    # 关闭文件
    srcFile.close()
    desFile.close()
# 执行拷贝
if __name__ == "__main__":
    fileCopy("by.txt","a.txt")

 

文件的拷贝

原文:https://www.cnblogs.com/byh7595/p/11979885.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!