from os import strerror
srcname = input("Enter the source file name: ")
try:
src = open(srcname, 'rb')
except IOError as e:
print("Cannot open the source file: ", strerror(e.errno))
exit(e.errno)
dstname = input("Enter the destination file name: ")
try:
dst = open(dstname, 'wb')
except Exception as e:
print("Cannot create the destination file: ", strerror(e.errno))
src.close()
exit(e.errno)
buffer = bytearray(65536)
total = 0
try:
readin = src.readinto(buffer)
print(readin)
while readin > 0:
written = dst.write(buffer[:readin])
print(written)
total += written
readin = src.readinto(buffer)
print(readin)
except IOError as e:
print("Cannot create the destination file: ", strerror(e.errno))
exit(e.errno)
print(total,'byte(s) succesfully written')
src.close()
dst.close()
#written = dst.write(buffer[:readin])如何认定这就是读取的文件
文件读取和写入的问题
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
2条回答 默认 最新
- CSDN专家-sinJack 2022-06-24 17:14关注
因为你是通过src.readin(buffer)读取的,将内容读取到buffer中。
然后写入dst中,操作的是butter。#读取src文件中的内容,将内容存储buffer变量中 readin = src.readinto(buffer) #输出当前读取内容的有效长度 print(readin) #如果当前有效长度大于0,说明文件中存在内容,循环遍历读取 while readin > 0: #边读边写 #将buffer中的内容写入dst文件对象中 written = dst.write(buffer[:readin]) #打印当前写入的内容长度 print(written) #统计所有写入文件中的内容长度 total += written #继续读取 readin = src.readinto(buffer) print(readin)
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报 编辑记录
悬赏问题
- ¥30 STM32 INMP441无法读取数据
- ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
- ¥15 用visualstudio2022创建vue项目后无法启动
- ¥15 x趋于0时tanx-sinx极限可以拆开算吗
- ¥500 把面具戴到人脸上,请大家贡献智慧
- ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
- ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
- ¥30 c#打开word开启修订并实时显示批注
- ¥15 如何解决ldsc的这条报错/index error
- ¥15 VS2022+WDK驱动开发环境