Python - os模块

1、os模块概述
Python os模块包含广泛的操做系统功能。若是你但愿你的程序可以与平台无关的话,这个模块是尤其重要的。(operation system简称os)python

 

2、经常使用方法
一、os.name
输出字符串指示正在使用的平台。若是是window 则用'nt'表示,对于Linux/Unix用户,它是'posix'。shell

二、os.getcwd()
函数获得当前工做目录,即当前Python脚本工做的目录路径。函数

三、os.listdir()
返回指定目录下的全部文件和目录名。
>>> os.listdir(os.getcwd())
['Django', 'DLLs', 'Doc', 'include', 'Lib', 'libs', 'LICENSE.txt', 'MySQL-python-wininst.log', 'NEWS.txt', 'PIL-wininst.log', 'python.exe', 'pythonw.exe', 'README.txt', 'RemoveMySQL-python.exe', 'RemovePIL.exe', 'Removesetuptools.exe', 'Scripts', 'setuptools-wininst.log', 'tcl', 'Tools', 'w9xpopen.exe']

四、os.remove()
删除一个文件。spa

五、os.system()
运行shell命令。
os.system("pause"):  按任意键退出...
>>> os.system('dir')
0
>>> os.system('cmd') #启动dos操作系统

六、os.sep 能够取代操做系统特定的路径分割符。orm

七、os.linesep字符串给出当前平台使用的行终止符
>>> os.linesep
'\r\n' #Windows使用'\r\n',Linux使用'\n'而Mac使用'\r'。
>>> os.sep
'\\' #Windowsip

八、os.path.split()
函数返回一个路径的目录名和文件名
>>> os.path.split('C:\\Python25\\abc.txt')
('C:\\Python25', 'abc.txt')rem

九、os.path.isfile()和os.path.isdir()函数分别检验给出的路径是一个文件仍是目录。
>>> os.path.isdir(os.getcwd())
True
>>> os.path.isfile('a.txt')
False字符串

十、os.path.exists()函数用来检验给出的路径是否真地存在
>>> os.path.exists('C:\\Python25\\abc.txt')
False
>>> os.path.exists('C:\\Python25')
Trueget

十一、os.path.abspath(name):得到绝对路径

十二、os.path.normpath(path):规范path字符串形式

1三、os.path.getsize(name):得到文件大小,若是name是目录返回0L

1四、os.path.splitext():分离文件名与扩展名
>>> os.path.splitext('a.txt')
('a', '.txt')

1五、os.path.join(path,name):链接目录与文件名或目录
>>> os.path.join('c:\\Python','a.txt')
'c:\\Python\\a.txt'
>>> os.path.join('c:\\Python','f1')
'c:\\Python\\f1'

1六、os.path.basename(path):返回文件名
>>> os.path.basename('a.txt')
'a.txt'
>>> os.path.basename('c:\\Python\\a.txt')
'a.txt'

1七、os.path.dirname(path):返回文件路径>>> os.path.dirname('c:\\Python\\a.txt')'c:\\Python'

相关文章
相关标签/搜索