当前位置:脚本大全 > > 正文

python的os模块操作(Python OS模块实例详解)

时间:2021-10-25 10:24:21类别:脚本大全

python的os模块操作

Python OS模块实例详解

本文实例讲述了python os模块。分享给大家供大家参考,具体如下:

os模块

在自动化测试中,经常需要查找操作文件,比如查找配置文件(从而读取配置文件的信息),查找测试报告等等,经常会对大量文件和路径进行操作,这就需要依赖os模块。

1. os.getcwd()

功能:查看当前所在路径

  • ?
  • 1
  • 2
  • import os
  • print(os.getcwd())
  • 2. os.listdir()

    列举目录下所有的文件,返回的是列表类型

  • ?
  • 1
  • 2
  • import os
  • print(os.listdir("c:\file"))
  • 3. os.path.abspath(path)

    功能:返回path的绝对路径

    绝对路径:【路径具体的写法】”d:\learn\python\day15”

    相对路径:【路径的简写】 :”.”

  • ?
  • 1
  • 2
  • import os
  • print(os.path.abspath("."))
  • 4. os.path.split(path)

    功能: 将路径分解为(文件夹,文件名),返回的是元组类型

    注意:若路径字符串最后一个字符是,则只有文件夹部分有值,若路径字符串中均无,则只有文件名部分有值,若路径字符串有\且不在最后,则文件夹和文件名都有值,且返回的结果不包括\

  • ?
  • 1
  • 2
  • import os
  • print(os.path.split(r"d:\python\file\hello.py"))
  • 结果:

    ('d:\python\file','hello.py')

  • ?
  • 1
  • print(os.path.split("."))
  • 结果:

    ('','.')

  • ?
  • 1
  • os.path.split('d:\\pythontest\\ostest\\')
  • 结果:

    ('d:\\pythontest\\ostest', '')

    5. os.path.join(path1,path2,…)

    将path进行组合,若其中有绝对路径,则之前的path将会被删除.

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • >>> import os
  • >>> os.path.join(r"d:\python\test",'hello.py')
  • 'd:\pyhton\test\hello.py'
  • >>> os.path.join(r"d:\pyhton\test\hello.py",r"d:\pyhton\test\hello2.py")
  • 'd:\pyhton\test\hello2.py'
  • 6. os.path.dirname(path)

    返回path中文件夹部分,不包括”\”

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • >>> import os
  • >>> os.path.dirname(r"d:\pyhton\test\hello.py")
  • 'd:\pyhton\test'
  • >>> os.path.dirname(".")
  • ''
  • >>> os.path.dirname(r"d:\pyhton\test\")
  • 'd:\pyhton\test'
  • >>> os.path.dirname(r"d:\pyhton\test")
  • test
  • 7. os.path.basename(path)

    功能:返回path中的文件名

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • >>> import os
  • >>> os.path.basename(r"d:\pyhton\test\hello.py")
  • 'hello.py'
  • >>> os.path.basename(".")
  • '.'
  • >>> os.path.basename(r"d:\pyhton\test\")
  • ''
  • >>> os.path.basename(r"d:\pyhton\test")
  • 'test'
  • 8. os.path.getsize(path)

    功能: 获取文件的大小,若是文件夹则返回0

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • >>> import os
  • >>> os.path.getsize(r"d:\pyhton\test\hello.py")
  • 38l
  • >>> os.path.getsize(r"d:\pyhton\test")
  • 0l
  • 9. os.path.exists(path)

    功能:判断文件是否存在,若存在返回true,否则返回false

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • >>> import os
  • >>> os.listdir(os.getcwd())
  • ['hello.py','test.txt']
  • >>> os.path.exists(r"d:\python\test\hello.py")
  • true
  • >>> os.path.exists(r"d:\python\test\hello1.py")
  • false
  • 10.os.path.isdir(path)

    功能:判断该路径是否为目录

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • >>> import os
  • >>>os.path.isdir(r"c:\users\zhangjiao\pycharmprojects\day01")
  • true
  • >>>os.path.isdir(r"c:\users\zhangjiao\pycharmprojects\day01\hello.py")
  • false
  • 11.os.path.isfile(path)

    功能:判断该路径是否为文件

  • ?
  • 1
  • 2
  • 3
  • import os
  • print(os.path.isfile(r'c:\360用户文件'))
  • print(os.path.isfile(r'c:\core.dmp'))
  • 输出:

    false
    true

    希望本文所述对大家python程序设计有所帮助。

    原文链接:https://blog.csdn.net/lm_is_dc/article/details/80099853

    标签:
    上一篇下一篇

    猜您喜欢

    热门推荐