python模块-os模块

Posted Tester-LH

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python模块-os模块相关的知识,希望对你有一定的参考价值。

python(5):os模块

 

在这里,主要总结下os模块各个方法的使用,和常用功能的实现过程.

print u\'获取当前工作目录:\',os.getcwd()
print u\'判断是否是文件:\',os.path.isfile(\'c:/\')
print u\'判断是否是目录:\',os.path.isdir(\'c:/\')
print u\'判断目录是否存在:\',os.path.exists(\'c:/\')



print u\'获取当前路劲:\', os.path.abspath(os.path.dirname(__file__))//__file__指的是当前python模块
print u\'获取当前路劲下的上一级目录:\', os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
dirPath=os.path.dirname(os.path.dirname(__file__))
print u\'对文件进行拼接:\',os.path.join(dirPath,r\'pythonfunction4/A.txt\')//oldfile前不需要加/
 

以上是关于python模块-os模块的主要内容,如果未能解决你的问题,请参考以下文章

python-time模块sys模块os模块以及大量实例

python,os模块 --L

Python OS模块

python常用模块(模块和包的解释,time模块,sys模块,random模块,os模块,json和pickle序列化模块)

Python必知必会 os 模块详解

Python模块