OS模块的常见用法
在python中,os 模块提供了非常丰富的方法用来处理文件和目录。常见的用法如下所示:
1. os.getcwd() :
得到当前工作目录,即当前Python脚本工作的目录路径。
>>> import os
>>> os.getcwd() #查看当前目录
'C:\\Users\\Lenovo'
2. os.chdir():
改变当前工作目录。
>>> os.chdir("d:\\python_code") #改变工作目录到d:\\python_code
>>> os.getcwd() #查看当前工作目录
'd:\\python_code'
3. os.listdir():
显示当前目录下所有文件和目录名
>>> os.listdir() #显示当前目录下的所有文件
['csv', 'one_week', 'shelve_dic.bak', 'shelve_dic.dat', 'shelve_dic.dir', 'simple', 'St11', 'st13', 'third_week', 'two_week']
4.