目录
一、os库基本介绍
os库提供通用的、基本的操作系统交互功能,包括windows、Mac os、linux
os库是python标准库,包含几百个函数
常用路径操作、经常管理、环境参数等几类
路径操作:os.path子库,处理文件路径及信息
进程管理:启动系统中其他程序
环境参数:获得系统软硬件等环境参数
1、路径操作
os.path子库以path为入口,用于操作和处理文件路径
函数
描述
os.path.abspath(path)
返回path在当前系统中的绝对路径
>>> os.path.abspath(‘test.txt’)
‘D:\\python\\test.txt’
os.path.normpath(path)
归一化path的表示形式,统一用\\分割路径
>>> os.path.normpath(r’D:\testFile\test.txt’)
‘D:\\testFile\\test.txt’
>>> os.path.normpath(‘D://testFile//test.txt’)
‘D:\\testFile\\test.txt’
os.path.relpath(path)
返回当前程序与文件之间的相对路径(relative path)
>>> os.path.relpath(r’D:\testFile\test.txt’)
‘..\\testFile\\test.txt’
os.path.dirname(path)
返回path中的目录名称
>>> os.path.dirname(r’F:\testFile\test.txt’)
‘F:\\testFile’
os.path.basename(path)
返回path中最后的文件名称,如果最后一级也是目录,则返回目录名称
>>> os.path.basename(r’D:\testFile\test.txt’)
‘test.txt’
>>> os.path.basename(r’D:\testFile’)
‘testFile’
os.path.split(path)
返回path中目录和文件名称,如果path最后一集也是目录,则都返回目录名称
如果path只有根路径,返回根路径和空路径
>>> os.path.split(r’D:\testFile\test.txt’)
(‘D:\\testFile’, ‘test.txt’)
>>> os.path.split(r’D:\testFile’)
(‘D:\\’, ‘testFile’)
>>> os.path.split(r’D:’)
(‘D:’, ”)
os.path.join(path, *paths)
组合path和paths,返回一个路径字符串
>>> os.path.join(r’D:’, ‘\testFile\test.txt’)
‘D:\testFile\test.txt’
os.path.exists(path)
判断path对应文件或目录是否存在,返回True或False
>>> os.path.exists(‘test.txt’)
True
os.path.isfile(path)
判断path所对应是否为已存在的文件,返回True或False
>>> os.path.isfile(‘D:\\testFile\\test.txt’)
True
os.path.isdir(path)
判断path所对应是否为已存在的目录,返回True或False
>>> os.path.isdir(‘D:\\testFile’)
True
os.path.getmtime(path)
返回path对应文件或目录最近一次的修改时间
>>> os.path.getmtime(‘D:\\testFile\\test.txt’)
1536545024.503566
os.path.getatime(path)
返回path对应文件或目录上一次的访问时间
>>> os.path.getatime(‘D:\\testFile\\test.txt’)
1536033956.367
os.path.getctime(path)
返回path对应文件或目录创建时间。windows系统中,上一次访问时间等于创建时间
>>> os.path.getctime(‘D:\\testFile\\test.txt’)
1536033956.367
os.path.getsize(path)
返回path对应文件的大小,以字节为单位
>>> os.path.getsize(‘D:\\testFile\\test.txt’)
29
2、进程管理
os.system(command)
执行程序或命令command
在windows系统中,返回值为cmd的调用返回信息
如下例,调用计算器返回值为0
>>> import os
>>> os.system(r’C:\Windows\system32\calc.exe’)
0
3、环境参数
获取操作系统环境参数
函数
描述
os.name
返回正在使用的工作平台,比如windows返回‘nt’,linux/Unix返回‘posix‘
os.getenv(‘PATH’)
返回系统环境变量
>>> os.getenv(‘PATH’)
‘C:\\Program Files\\Java\\jdk1.8.0_162\\bin;
os.listdir(path)
返回path目录下所有文件
>>> os.listdir(r’D:\testFile’)
[‘dumps.txt’, ‘test.txt’, ‘testTxt.txt’]
os.chdir(path)
修改当前程序操作的路径
os.chdir(‘D:\\testFile’)
os.getcwd()
返回程序的当前路径
>>> os.getcwd()
‘D:\\testFile’
os.getlogin()
获取当前系统的登录用户名称
>>> os.getlogin()
‘showgea’
os.cpu_count()
获得当前系统的CPU数量
>>> os.cpu_count()
4
os.urandom(n)
获得n个字节长的随机字符串,通常用于加解密运算
>>> os.urandom(10)
b’F\x18l\x98\x1c\xfch&\xef\xa6′
二、第三方库安装脚本
# PipInstall.py
import os
libs = {'numpy','sklearn','pillow','beautifulsoup4','wheel','networkx',\
'sympy','django','pypdf2','pygame'}
try:
for lib in libs:
os.system('pip list ' + lib)
print('Successful')
except:
print('Failed')
运行结果:
======================= RESTART: D:/python/PipInstall.py =======================
Successful
Successful
Successful
Successful
Successful
Successful
Successful
Successful
Successful
Successful