Python3 OS模块常用命令总结

参考链接:https://blog.csdn.net/lygzscnt12/article/details/52470017?utm_source=blogxgwz1

一、OS模块概述

Python3 OS模块包含普遍的操作系统功能。如果你希望你的程序能够与平台无关的话,这个模块是尤为重要的(一语中的)。 ### 二、OS模块常用方法 1、os.name 输出字符串指示正在使用的平台。如果是window 则用’nt’表示,对于Linux/Unix用户,它是’posix’。

2、os.getcwd() 函数得到当前工作目录,即当前Python脚本工作的目录路径。

3、os.listdir() 返回指定目录下的所有文件和目录名。

1
2
>>> 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']

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

5、os.system() 运行shell命令。

1
2
3
>>> os.system('dir')
0
>>> os.system('cmd') #启动dos

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

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

1
2
3
4
5
>>> os.linesep
'\r\n' #Windows使用'\r\n',Linux使用'\n'而Mac使用'\r'。
>>> os.sep
'\\' #Windows
>>>

8、os.path.split() 函数返回一个路径的目录名和文件名

1
2
>>> os.path.split('C:\\Python25\\abc.txt')
('C:\\Python25', 'abc.txt')

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

1
2
3
4
>>> os.path.isdir(os.getcwd())
True
>>> os.path.isfile('a.txt')
False

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

1
2
3
4
5
>>> os.path.exists('C:\\Python25\\abc.txt')
False
>>> os.path.exists('C:\\Python25')
True
>>>

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

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

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

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

1
2
>>> os.path.splitext('a.txt')
('a', '.txt')

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

1
2
3
4
5
>>> os.path.join('c:\\Python','a.txt')
'c:\\Python\\a.txt'
>>> os.path.join('c:\\Python','f1')
'c:\\Python\\f1'
>>>

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

1
2
3
4
5
>>> os.path.basename('a.txt')
'a.txt'
>>> os.path.basename('c:\\Python\\a.txt')
'a.txt'
>>>

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

1
2
>>> os.path.dirname('c:\\Python\\a.txt')
'c:\\Python'

18、os.mkdir(path) 创建一级目录 例如要在D盘下创建hello的目录

1
2
3
import os
os.mkdir('d:\hello')

19、os.makedirs(path) 创建多级目录 例如在D盘下创建books的目录,books目录下在创建book目录

1
2
import os
os.makedirs('d:\\books\\book')
### 先学这么多吧,以后边遇到再边记录...