import os #os库的路径操作 import os.path os.path.abspath(path) 返回path在当前系统中的绝对路径 >>>os.path.abspath("file.txt") 'C:\\Users\\Datas\\Python\\file.txt' os.path.normpath(path) 归一化path的表示形式,统一用\\分隔路径 >>>os.path.normpath("D://PYE//file.txt") 'D:\\PYE\\file.txt' os.path.relpath(path) 返回当前程序与文件之间的相对路径 >>>os.path.relpath("C://PYE//file.txt") '..\\..\\..\\..\\..\\..\\PYE\\file.txt' os.path.dirname(path) 返回path中的目录名称 >>>os.path.dirname("D://PYE//file.txt") 'D://PYE' os.path.basename(path) 返回path中最后的文件名称 >>>os.path.basename("D://PYE//file.txt") # 'file.txt' os.path.join(path,*paths) 组合path与paths,返回一个路径字符串 >>>os.path.join("D:/","PYE/file.txt") 'D:/PYE/file.txt' os.path.exists(path) 判断path对应文件或目录是否存在,返回True或False os.path.isfile(path) 判断是否为已存在的文件,返回True或False os.path.isdir(path) 判断是否为已存在的目录,返回True或False os.path.getatime(path) 返回path对应文件或目录上一次的访问时间(返回系统内部对应时间值,可以使用time库中time.ctime函数转换为平时看的时间) os.path.getmtime(path) 返回path对应文件或目录最近一次的修改时间(返回系统内部对应时间值,可以使用time库中time.ctime函数转换为平时看的时间) os.path.getctime(path) 返回path对应文件或目录的创建时间 os.path.getsize(path) 返回对应文件大小 # 进程管理 os.system(command) 执行程序或命令command #执行系统的计算机 os.system("C:\\Windows\\System32\\calc.exe") >>> 0 #返回0则表示运行成功 #执行画图工具并给一个参数 os.system("C:\\Windows\\System32\\mspaint.exe \D:\\PYE\\grwordcloud.png") >>> 0 #环境参数 #获取或改变系统环境信息 os.chdir(path) 修改当前程序操作的路径 >>>os.chdir("D:") os.getcwd() 返回程序当前路径 >>>os.getcwd() 'D:\\' os.getlogin() 返回当前系统登录用户名称 >>>os.getlogin() 'user1' os.cpu_count() 获得当前系统的CPU数量 os.urandom(n) 获得n个字节长度的随机字符串,通常用于加解密运算 >>>os.urandom(10)#产生一个10字节的随机字符串