自学内容网 自学内容网

python(四)os模块、sys模块

一、os模块

os 模块提供了很多程序与操作系统直接交互的功能

名称描述示例
os.getcwd()得到当前工作目录,即当前Python脚本工作的目录路径‘D:\python’
os.listdir()返回指定目录下的所有文件和目录名>>> os.listdir()
os.remove()函数用来删除一个文件>>> os.remove(‘i.cfg’)
os.removedirs(r“c:\python”)删除多个目录os.removedirs(‘haha’)
os.path.isfile()检验给出的路径是否是一个文件,文件存在为Trueos.path.isfile(“123.txt”)
os.path.isdir()检验给出的路径是否是一个目录,目录存在为Trueos.path.isdir(“work”)
os.path.isabs()判断是否是绝对路径,路径并不需要存在os.path.isabs(“d://242”)
os.path.exists()检验给出的路径是否真地存os.path.exists(“123.txt”)
os.path.split()返回一个路径的目录名和文件名,路径不一定存在>>> os.path.split(‘d://hah/123.txt’)(‘d://hah’, ‘123.txt’)
os.path.splitext()分离扩展名,路径不一定存在>>> os.path.splitext(‘d://hah/123.txt’)(‘d://hah/123’, ‘.txt’)
os.path.dirname()获取路径名,路径不一定存在>>> os.path.dirname(‘d://hah/123.txt’)‘d://hah’
os.path.abspath()获得绝对路径,文件或目录不一定存在os.path.abspath(‘hehe.txt’)‘f:\prictice\hehe.txt’
os.path.basename()获取文件名os.path.basename(“f:\prictice\hehe.txt”)‘hehe.txt’
os.path.getsize(filename)获取文件大小os.path.getsize(“321.txt”)
os.path.join(dir,filename)结合目录名与文件名>>> os.path.join(‘haha’,‘123.txt’)‘haha\123.txt’
os.system()运行shell命令 >>> os.system(“python -version”)
os.getenv(“HOME”)读取操作系统环境变量HOME的值>>> os.getenv(“HOME”)‘C:\Users\Administrator’
os.environ返回操作系统所有的环境变量
os.environ.setdefault(‘HOME’,‘/home/alex’)设置系统环境变量,仅程序运行时有效os.environ.setdefault(‘HOME’,‘123’)
os.linesep给出当前平台使用的行终止符>>> os.linesep ‘\r\n’
os.name指示你正在使用的平台>>> os.name ‘nt’
os.curdir指代当前目录(‘.’)
os.sep输出操作系统特地党的路径分隔符windows下为‘\’,linux下为‘/’
os.pardir指代上一级目录(‘…’)
os.rename(old, new)重命名,也相当于剪切os.rename(‘123.txt’,‘321.txt’)
os.makedirs(r“c:\python\test”)创建多级目录os.makedirs(“a/b/c”)
os.mkdir(“test”)创建单个目录os.mkdir(‘haha’)
os.stat(file)获取文件或者目录属性os.stat(‘321.txt’)
os.chmod(path, mode)修改文件权限与时间戳os.chmod(“/tmp/foo.txt”, stat.S_IXGRP)
os.chdir(dirname)改变工作目录到os.chdir(‘d://python’)
os.get_terminal_size()获取当前终端的大小
os.kill(10884,signal.SIGKILL)杀死进程
getatime(file)获取文件最近的访问时间,返回浮点秒数
getctime(file)获取文件的创建时间,返回浮点秒数
getmtime(file)获取文件最近的修改时间,返回浮点秒数
walk(top)遍历top参数指定路径下的所有子目录,返回一个三元组(路径,[目录],[文件])生成器for i in os.walk(“F:\prictice”):print(i(‘F:\prictice’, [‘work’], [‘321.txt’, ‘conf.ini’, ‘module.py’])(‘F:\prictice\work’, [], [‘543.txt’, ‘榕基.txt’])

二、sys模块

sys 模块是与 Python 解释器交互的一个接口。sys 模块提供了许多函数和变量来处理 Python 运行时环境的不同部分

名称描述
sys.argv命令行参数List,第一个元素是程序本身路径
sys.exit(n)退出程序,正常退出时exit(0)
sys.version获取Python解释程序的版本信息
sys.maxsize最大的Int值
sys.path返回模块的搜索路径,初始化时使用PYTHONPATH环境变量的值
sys.platform返回操作系统平台名称
sys.stdout.write(‘please:’)标准输出 , 引出进度条的例子, 注,在py3上不行,可以用print代替
val = sys.stdin.readline()[:-1]标准输入
sys.getrecursionlimit()获取最大递归层数
sys.setrecursionlimit(1200)设置最大递归层数
sys.getdefaultencoding()获取解释器默认编码
sys.getfilesystemencoding获取内存数据存到文件里的默认编码

原文地址:https://blog.csdn.net/qq_40067649/article/details/144033041

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!