美文网首页
8.4 模块7:os库的使用

8.4 模块7:os库的使用

作者: 郭柯廷 | 来源:发表于2020-03-18 00:58 被阅读0次

    八、程序设计方法学

    • 8.1 实例13:体育竞技分析
    • 8.2 Python程序设计思维
    • 8.3 Python第三方库安装
    • 8.4 模块7:os库的使用
    • 8.5 实例14:第三方库安装脚本

    8.4 模块7:os库的使用

    os库之路径操作

    os.path子库以path为入口,用于操作和处理文件路径

    import os.path
    import os.path as op
    
    函数 <center>描述</center>
    os.path.abspath(path) 返回path在当前系统中的绝对路径
    os.path.normpath(path) 归一化path的表示形式,统一用\\分隔
    os.path.relpath(path) 返回当前程序与文件直接的相对路径(relative path)
    os.path.dirname(path) 返回path中的目录名称
    os.path.basename(path) 返回path中最后的文件名称
    os.path.join(path, *paths) 组合path与paths,返回一个路径字符串
    os.path.exists(path) 判断path对应文件或目录是否存在,返回True或False
    os.path.isfile(path) 判断path所对应是否为已存在的文件,返回True或False
    os.path.isdir(path) 判断path所对应是否为已存在的目录,返回True或False
    os.path.getatime(path) 返回path对应文件或目录上一次的访问时间
    os.path.getmtime(path) 返回path对应文件或目录最近一次的修改时间
    os.path.getctime(path) 返回path对应文件或目录的创建时间
    os.path.getsize(path) 返回path对应文件的大小,以字节为单位
    os.path.abspath("file.txt")
    >>> "C:\\file.txt"
    
    os.path.normpath("C://file.txt")
    >>> "C:\\file.txt"
    
    os.path.relpath("C:\\file.txt")
    >>> ..\\..\\..\\file.txt
    

    os库之进程管理

    os.system(command)

    • 执行程序或命令command
    • 在Windows系统中,返回值为cmd的调用返回信息
    os.system("C:\\Windows\\System32\\calc.exe")
    

    指定某个文件以某个程序打开

    import os
    os.system("C:\\Windows\\System32\\mspaint.exe" "C:\\picture.jpg")
    

    os库之环境参数

    函数 <center>描述</center>
    os.chdir(path) 修改当前程序操作的路径
    os.getcwd() 返回程序的当前路径
    os.getlogin() 获得当前系统登陆用户名称
    os.cpu_count() 获得当前系统的CPU数量
    os.urandom(n) 获得n个字节长度的随机字符串,通常用于加解密运算
    os.chdir("D:")  # 切换到D盘根目录下
    
    

    相关文章

      网友评论

          本文标题:8.4 模块7:os库的使用

          本文链接:https://www.haomeiwen.com/subject/dwufyhtx.html