python 模块 之 os

一、os模块概述

Python os模块包含普遍的操作系统功能。如果你希望你的程序能够与平台无关的话,这个模块是尤为重要的。(一语中的)

二、常用方法

1、os.name

输出字符串指示正在使用的平台。如果是window 则用'nt'表示,对于Linux/Unix用户,它是'posix'。

2、os.getcwd()

函数得到当前工作目录,即当前Python脚本工作的目录路径。

3、os.listdir()

返回指定目录下的所有文件和目录名。

>>>, , , , , , , , , , , , , , , , , , , , >>>

4、os.remove()

删除一个文件。

5、os.system()

运行shell命令。

>>> os.system(>>> os.system()

6、os.sep 可以取代操作系统特定的路径分割符。

7、os.linesep字符串给出当前平台使用的行终止符

>>>            >>>              >>>

8、os.path.split()

函数返回一个路径的目录名和文件名

>>> os.path.split(, )

9、os.path.isfile()和os.path.isdir()函数分别检验给出的路径是一个文件还是目录。

>>>>>> os.path.isfile(

10、os.path.exists()函数用来检验给出的路径是否真地存在

>>> os.path.exists(>>> os.path.exists(>>>

11、os.path.abspath(name):获得绝对路径

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

13、os.path.getsize(name):获得文件大小,如果name是目录返回0L

14、os.path.splitext():分离文件名与扩展名

>>> os.path.splitext(, )

15、os.path.join(path,name):连接目录与文件名或目录

>>> os.path.join(,>>> os.path.join(,>>>

16、os.path.basename(path):返回文件名

>>> os.path.basename(>>> os.path.basename(>>>

17、os.path.dirname(path):返回文件路径

>>> os.path.dirname(

以上信息转自:http://www.cnblogs.com/BeginMan/p/3327291.html

你可能感兴趣的:(python,OS)