python第七天 文件与文件系统

文件

  • open()方法
    Python open() 方法用于打开一个文件,并返回文件对象,在对文件进行处理过程都需要使用到这个函数,如果该文件无法被打开,会抛出 OSError。
    常用格式:open(file, mode='r')
    完整格式:
open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None)
  1. file: 必需,文件路径(相对或者绝对路径)。
  2. mode: 可选,文件打开模式
  3. buffering: 设置缓冲
  4. encoding: 一般使用utf8
  5. errors: 报错级别
  6. newline: 区分换行符
  7. closefd: 传入的file参数类型
>>> f = open("D:\poem.txt","r",encoding = "UTF-8")
>>> f.read()
'锄禾\n锄禾日当午,\n汗滴禾下土,\n谁知盘中餐,\n粒粒皆辛苦。'
>>> f.close()
mode常用参数
  • t 文本模式 (默认)。
  • b 二进制模式。
  • x 写模式,新建一个文件,如果该文件已存在则会报错。
  • r 以只读方式打开文件。文件的指针将会放在文件的开头。这是默认模式。
  • w+ 打开一个文件用于读写。如果该文件已存在则打开文件,并从开头开始编辑,即原有内容会被删除。如果该文件不存在,创建新文件。
  • wb+ 以二进制格式打开一个文件用于读写。如果该文件已存在则打开文件,并从开头开始编辑,即原有内容会被删除。如果该文件不存在,创建新文件。一般用于非文本文件如图片等。
文件对象方法
  • fileObject.close() 用于关闭一个已打开的文件。关闭后的文件不能再进行读写操作, 否则会触发ValueError错误。
>>> f = open("D:\poem.txt","r",encoding = "UTF-8")
>>> f.read()
'锄禾\n锄禾日当午,\n汗滴禾下土,\n谁知盘中餐,\n粒粒皆辛苦。'
>>> f.close()
>>>	f.read()
#ValueError: read of closed file
  • fileObject.read([size]) 从文件读取指定的字节数,如果未给定或为负则读取所有。size为从文档中读取的字符数
>>> f = open("D:\poem.txt","r",encoding = "UTF-8")
>>> f.read()
'锄禾\n锄禾日当午,\n汗滴禾下土,\n谁知盘中餐,\n粒粒皆辛苦。'
>>>	f.close()
  • fileObject.readline() 读取整行,包括 “\n” 字符。
  • fileObject.readlines() 用于读取所有行(直到结束符 EOF)并返回列表,该列表可以由 Python 的 for… in … 结构进行处理。
>>> f = open("D:\poem.txt","r",encoding = "UTF-8")
>>> f.readline()
'锄禾\n'
>>> f.readline()
'锄禾日当午,\n'
>>> f.readline()
'汗滴禾下土,\n'
>>> f.readline()
'谁知盘中餐,\n'
>>> f.readline()
'粒粒皆辛苦。'
>>> f.close()
>>> f = open("D:\poem.txt","r",encoding = "UTF-8")
>>> line = f.readlines()
>>> for i in range(len(line)):
			print(line[i])

结果

锄禾

锄禾日当午,

汗滴禾下土,

谁知盘中餐,

粒粒皆辛苦。
  • fileObject.tell()返回文件的当前位置,即文件指针当前位置。
>>> f = open("D:\poem.txt","r",encoding = "UTF-8")
>>> f.readline()
'0123456789abcdef'
>>> f.tell()
16
>>> f.readline()
''
>>> f.tell()
16		#文档当前行最后一个字符位置
  • file.seek(offset[, whence]) 移动文件读取指针到指定位置
    offset – 开始的偏移量,也就是代表需要移动偏移的字节数,如果是负数表示从倒数第几位开始。
    whence:可选,默认值为 0。给 offset 定义一个参数,表示要从哪个位置开始偏移;0 代表从文件开头开始算起,1 代表从当前位置开始算起,2 代表从文件末尾算起。
>>> f.write(b'0123456789abcdef')
16
>>> print(f.seek(5))
5
>>> print(f.seek(-3,2))
13
>>> f.read(1)
b'd'
>>> f.close()
  • fileObject.write(str)用于向文件中写入指定字符串,返回的是写入的字符长度
>>> f.write(b'0123456789abcdef')
16
>>> print(f.seek(5))
5
>>> print(f.seek(-3,2))
13
>>> f.read(1)
b'd'
>>> f.close()

二进制问题

>>> f = open("D:\poem.txt","b",encoding = "UTF-8")
#ValueError: binary mode doesn't take an encoding argument

在文件关闭前或缓冲区刷新前,字符串内容存储在缓冲区中,这时你在文件中是看不到写入的内容的。

如果文件打开模式带b,那写入文件内容时,str(参数)要用encode方法转为bytes形式,否则报错:TypeError: a bytes-like object is required, not ‘str’。

绝对路径和相对路径

绝对路径和相对路径

文件系统

  • os.access(path, mode)
    检验权限模式
import os,sys
ret = os.access("D:\poem.txt",os.F_OK)
print(ret)
ret = os.access("D:\poem.txt",os.R_OK)
print(ret)
ret = os.access("D:\poem.txt",os.W_OK)
print(ret)
ret = os.access("D:\poem.txt",os.X_OK)
print(ret)

os.F_OK: 作为access()的mode参数,测试path是否存在。
os.R_OK: 包含在access()的mode参数中 , 测试path是否可读。
os.W_OK 包含在access()的mode参数中 , 测试path是否可写。
os.X_OK 包含在access()的mode参数中 ,测试path是否可执行。

  • os.getcwd()用于返回当前工作目录。
  • os.chdir(path)用于改变当前工作目录到指定的路径。
import os,sys
path = 'D:\'
retval = os.getcwd()
print(retval)		#E:\python源码\Document and OS
os.chdir(path)
print("目录修改成功 : %s" % os.getcwd())
  • os.listdir(path) 返回path指定的文件夹包含的文件或文件夹的名字的列表。
import os

dirs = os.listdir()
for item in dirs:
    print(item)
  • os.remove(path)用于删除指定路径的文件。如果指定的路径是一个目录,将抛出 OSError。
import os

print("目录为: %s" % os.listdir(r'.\E\A'))
os.remove(r'.\E\A\test.txt')
print("目录为: %s" % os.listdir(r'.\E\A'))
  • os.rename(src, dst)方法用于命名文件或目录,从 src 到 dst,如果 dst 是一个存在的目录, 将抛出OSError。
import os

print("目录为: %s" % os.listdir(os.getcwd()))
os.rename("test", "test2")
print("重命名成功。")
print("目录为: %s" % os.listdir(os.getcwd()))
  • os.system(command)运行系统的shell命令(将字符串转化成命令)
import os

path = os.getcwd() + '\\a.py'
a = os.system(r'python %s' % path)

os.system('ipconfig/all')  # 检查ip地址
  • os.curdir指代当前目录(.)
  • os.pardir指代上一级目录(…)
  • os.sep输出操作系统特定的路径分隔符(win下为\,Linux下为/)
  • os.linesep当前平台使用的行终止符(win下为\r\n,Linux下为\n)
  • os.name指代当前使用的操作系统(包括:‘mac’,‘nt’)
import os

print(os.curdir)  # .
print(os.pardir)  # ..
print(os.sep)  # \
print(os.linesep)
print(os.name)  # nt
  • os.path.getsize(file)返回指定文件大小,单位是字节。
  • os.path.getatime(file)返回指定文件最近的访问时间
  • os.path.getctime(file)返回指定文件的创建时间
  • os.path.getmtime(file)返回指定文件的最新的修改时间
    浮点型秒数,可用time模块的gmtime()或localtime()函数换算
import os
import time

file = r'.\test.txt'
print(os.path.getsize(file))  # 30
print(os.path.getatime(file))  # 1565593737.347196
print(os.path.getctime(file))  # 1565593737.347196
print(os.path.getmtime(file))  # 1565593797.9298275
print(time.gmtime(os.path.getctime(file)))
# time.struct_time(tm_year=2019, tm_mon=8, tm_mday=12, tm_hour=7, tm_min=8, tm_sec=57, tm_wday=0, tm_yday=224, tm_isdst=0)
print(time.localtime(os.path.getctime(file)))
# time.struct_time(tm_year=2019, tm_mon=8, tm_mday=12, tm_hour=15, tm_min=8, tm_sec=57, tm_wday=0, tm_yday=224, tm_isdst=0
  • os.path.exists(path)判断指定路径(目录或文件)是否存在
  • os.path.isabs(path)判断指定路径是否为绝对路径
  • os.path.isdir(path)判断指定路径是否存在且是一个目录
  • os.path.isfile(path)判断指定路径是否存在且是一个文件
  • os.path.islink(path)判断指定路径是否存在且是一个符号链接
  • os.path.ismount(path)判断指定路径是否存在且是一个悬挂点
  • os.path.samefile(path1,path2)判断path1和path2两个路径是否指向同一个文件
import os

print(os.path.ismount('D:\\'))  # True
print(os.path.ismount('D:\\Test'))  # False

你可能感兴趣的:(python)