文件的打开与关闭
打开文件
在python,使用open函数,可以打开一个已经存在的文件,或者创建一个新文件
open(文件名,访问模式)
示例如下:
f = open('test.txt','w')
说明:
关闭文件
close( )
示例如下:
# 打开一个文件,如果存在则打开,如果不存在则创建
f = open('test1.txt','w')
# 关闭这个文件
f.close()
文件的读写
读数据(read)
使用read(number)可以从文件中读取数据,number表示要从文件中读取的数据的长度(单位是字节),如果没有传入number,那么就表示读取文件中所有的数据
开始前可以先新建一个:test1.txt文件, 内容如下
hello world, my name is zyh!
例子开始:
demo:
f = open('test1.txt','r')
content = f.read(5)
print(content)
content = f.read()
print(content)
f.close()
运行现象:
注意:
如果open是打开一个文件,那么可以不用谢打开的模式,即只写open('test.txt')
如果使用读了多次,那么后面读取的数据是从上次读完后的位置开始的
写数据(write)
使用write()可以完成向文件写入数据
demo:
f = open('test1.txt','w')
f.write('hello world, my name is zyh!')
f.close()
运行现象:
注意:
如果文件不存在那么创建,如果存在那么就先清空,然后写入数据
读数据(readlines)
就像read没有参数时一样,readlines可以按照行的方式把整个文件中的内容进行一次性读取,并且返回的是一个列表,其中每一行的数据为一个元素
#coding=utf-8
f = open('test1.txt','r')
content = f.readlines()
print(type(content))
i=1
fortempincontent:
print("%d:%s"%(i, temp))
i+=1
f.close()
运行现象:
读数据(readline)
#coding=utf-8
f = open('test1.txt','r')
content = f.readline()
print("1:%s"%content)
content = f.readline()
print("2:%s"%content)
f.close()
例子:备份一个txt文件(复制)
输入文件的名字,然后程序会自动复制一份文件
参考代码
#coding=utf-8
oldFileName = input("Please inter the file name :")
oldFile = open(oldFileName,'r')
ifoldFile:
fileNum = oldFileName.rfind('.')
iffileFlagNum >:
fileFlag = oldFileName[fileNum:]
newFileName = oldFileName[:fileNum] +'[copy]'+ fileFlag
newFile = open(newFileName,'w')
forlineContentinoldFile.readlines():
newFile.write(lineContent)
# 关闭文件
oldFile.close()
newFile.close()
文件的随机读写
获取当前读写的位置
在读写文件的过程中,如果想知道当前的位置,可以使用tell()来获取
# 打开一个已经存在的文件
f = open("test1.txt","r")
str = f.read(3)
print"readdata : ", str
# 查找当前位置
pos = f.tell()
print"local posisiton : ", pos
str = f.read(3)
print"read data : ", str
# 查找当前位置
pos= f.tell()
print"local position : ", pos
f.close()
定位到某个位置
如果在读写文件的过程中,需要从另外一个位置进行操作的话,可以使用seek()
seek(offset, from)有2个参数
offset:偏移量
from:方向
0:表示文件开头
1:表示当前位置
2:表示文件末尾
demo:把位置设置为:从文件开头,偏移5个字节
# 打开一个已经存在的文件
f = open("test1.txt","r")
str = f.read(30)
print"read data : ", str
position = f.tell()
print"local position : ", position
f.seek(5,)
position = f.tell()
print"localposition : ", position
f.close()
demo:把位置设置为:离文件末尾,3字节处
f = open("test.txt","r")
position = f.tell()
print"local position: ", position
# move position
f.seek(-3,2)
#after read
str = f.read()
print"readdata : ", str
f.close()
文件的重命名、删除
有些时候,需要对文件进行重命名、删除等一些操作,python的os模块中都有这么功能
文件重命名
os模块中的rename()可以完成对文件的重命名操作
rename(需要修改的文件名, 新的文件名)
importos
os.rename("haoxiang.txt","haoxiang-最终版.txt")
删除文件
os模块中的remove()可以完成对文件的删除操作
remove(待删除的文件名)
importos
os.remove("haoxiang.txt")
文件夹的相关操作
实际开发中,我们可能需要用程序的方式对文件夹创建删除
就像对文件操作需要os模块一样,如果要操作文件夹,同样需要os模块
创建文件夹方法
importos
os.mkdir("好想")
当前目录的获取
importos
os.getcwd()
默认目录的改变
importos
os.chdir("../")
获取目录列表
importos
os.listdir("./")
删除文件夹
importos
os.rmdir("好想")
应用:批量修改文件名
参考代码
#coding=utf-8
# 批量在文件名前加前缀
importos
funFlag =1# 1表示添加标志 2表示删除标志
folderName ='./renameDir/'
# 获取指定路径的所有文件名字
dirList = os.listdir(folderName)
# 遍历输出所有文件名字
fornameindirList:
printname
iffunFlag ==1:
newName ='[好想出品]-'+ name
eliffunFlag ==2:
num = len('[好想出品]-')
newName = name[num:]
printnewName
os.rename(folderName+name, folderName+newName)
领取专属 10元无门槛券
私享最新 技术干货