Python 文件操作----大文件处理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 文件操作----大文件处理相关的知识,希望对你有一定的参考价值。
#coding=utf-8
#当读取某个不知名的文件时,切记不要用read(),否则一定会报异常
#1.获取用户名要复制的文件
old_file_name = input("输入要复制的文件名:")
#2.打开要复制的文件
old_file = open(old_file_name,"r")
position = old_file_name.rfind(".")
new_file_name = old_file_name[:position] + "[复件]" + old_file_name[position:]
#3.新建一个文件
new_file = open(new_file_name,"w")
#4.从旧文件中读取数据,并且写入到新文件
while True:
content = old_file.read(1024)
new_file.write(content)
#5. 关闭两个文件
old_file.close()
new_file.close()
以上是关于Python 文件操作----大文件处理的主要内容,如果未能解决你的问题,请参考以下文章