2020
09-27
09-27
Python内存映射文件读写方式
我就废话不多说了,还是直接看代码吧!importosimporttimeimportmmapfilename='test.txt'#如果不存在,创建。ifnotos.path.exists(filename):open(filename,'w')print(os.path.isdir(filename))ifos.path.isfile(filename):print(time.ctime(os.path.getctime(filename)))fd=os.open(filename,os.O_RDWR)m=mmap.mmap(fd,50,access=mmap.ACCESS_WRITE)#1024字节的文件。m.seek(2)buf1=bytes(b'Zhang')m[...
继续阅读 >