小型文件备份
# 文件的备份 def copyFile(): # 接收用户输入的文件名 old_file=input("请输入要备份的文件名:") file_list=old_file.split(".") # 构造新的文件名.加上备份的后缀 new_file=file_list[0]+"_备份."+file_list[1] old_f=open(old_file,"r") #打开需要备份的文件 new_f=open(new_file,"w") #以写的模式去打开新文件,不存在则创建 content=old_f.read() #将文件内容读取出来 new_f.write(content) #将读取的内容写入备份文件 old_f.close() new_f.close() pass copyFile()
备份大型文件
# 文件的备份 def copyFile(): # 接收用户输入的文件名 old_file=input("请输入要备份的文件名:") file_list=old_file.split(".") # 构造新的文件名.加上备份的后缀 new_file=file_list[0]+"_备份."+file_list[1] try: # 监视iu处理逻辑 with open(old_file,"r") as old_f,open(new_file,"w")as new_f: while True: content=old_f.read(1024) #一次处理1024字节 new_f.write(content) if len(content)<1024: break except Exception as msg: print(msg) pass copyFile()
# tell 返回指针当前所在的位置 with open("Test.txt","r") as f: print(f.read(3)) print(f.tell()) #读取三个字,每个汉字占两个字节,光标当前位置为6 print(f.read(2)) print(f.tell()) #共读取五个字,光标位置为10
# truncate 可以对源文件进行截取操作 fobjB=open("Test.txt","r") print(fobjB.read()) fobjB.close() print("截取之后的数据") fobjA=open("Test.txt","r+") fobjA.truncate(15) print(fobjA.read())
# seek 控制光标所在的位置 with open("Test_备份.txt ","rb") as f: data=f.read(2) #按照二进制法则读取 两个字符即一个汉字 print(data.decode("gbk")) f.seek(-2,1) #相当于光标又到了0的位置 -代表往回便宜 1代表从当前位置开始 2代表从末尾开始读 print(f.read(4).decode("gbk")) f.seek(-6,2) print(f.read(2).decode("gbk")) #从末尾开始向前偏移6个 读取两个字节
对于用r这种模式打开文件 在文本文件中,没有使用二进制的选项打开文件 只允许从文件你的开头计算相对位置,从文件尾部计算或者当前计算的话就会引发异常
总结
本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注服务器之家的更多内容!
原文链接:https://blog.csdn.net/weixin_44632711/article/details/120786335