讀取當(dāng)前目錄:os.getcwd
>>> os.getcwd()
'D:\Python3.4.4'
>>>
更改當(dāng)前目錄:os.chdir
>>> os.chdir('c:')
>>> os.getcwd()
'C:\\'
>>>
讀取當(dāng)前目錄文件和文件夾:os.listdir(os.getcwd())
>>> os.listdir(os.getcwd())
['Documents and Settings', 'Program Files', 'Program Files (x86)', 'Users', 'Windows']
>>>
新建文件夾:os.mkdir
>>> os.mkdir('test')
>>>
判斷一個目錄是否存在:os.path.exists
>>> os.path.exists('c:/test/1')
False
>>> os.mkdir('1')
>>> os.path.exists('c:/test/1')
True
>>>
判斷是文件還是目錄:os.path.isdir录肯,os.path.isfile
>>> os.path.isdir('1')
True
>>> os.path.isfile('1')
False
>>>
文件和文件夾重命名:os.rename
>>> os.listdir(os.getcwd())
['1']
>>> os.rename('1','2')
>>> os.listdir(os.getcwd())
['2']
>>>