标签:缓冲 打开 写入 temp 字节 取数 code buffer 文件小
# 复制文件小脚本 source_file = r‘D:\py1912\demo\tanchishe.py‘ target_file = r‘D:\py1912\demo\temp.py‘ # 分别打开文件对象 source = open(source_file,‘rb‘) target = open(target_file,‘wb‘) # 从源文件中读取指定数量字节 1024B buffer_size = 10 # 缓冲区大小 data = source.read(buffer_size) # 只要数据对象不是空字节对象,我们就认为还有数据 while data != b"": # 向目标文件中写入数据 target.write(data) # 继续读取数据 data = source.read(buffer_size) # 关闭文件对象 source.close() target.close()
标签:缓冲 打开 写入 temp 字节 取数 code buffer 文件小
原文地址:https://www.cnblogs.com/libragyf/p/12271326.html