#1.os.getcwd() #獲取當前目錄 print os.getcwd() #示例 print os.getcwd()+'\\resources\\baidu.txt' #獲取當前目錄下的resources文件夾下的baidu.txt文件 print '----當前目錄.形式:',os.curdir #返回當前目錄('.') #2.os.listdir(dirname) #列出dirname下的目錄和文件 print '----當前目錄下全部文件:',os.listdir(os.getcwd())#至關於在os.getcwd()目錄下執行dir命令,返回爲list類型 #3.os.chdir(dirname) #改變工做目錄到dirname os.chdir('d:\\workspace') #示例 改變工做目錄到d盤下的workspace目錄 print '----改變目錄後從新打印目錄:',os.getcwd() #4.os.path.abspath(name) #得到當前所在絕對路徑 並追加name值 print '----當前絕對路徑加name值',os.path.abspath('a\\b\\c')#示例 #5.os.path.join(path,name) #鏈接目錄與文件名或目錄 print '----鏈接目錄與文件名或目錄',os.path.join(os.getcwd(),'test') #示例 當前目錄鏈接test文件名稱 #6.os.path.dirname(path) #返回文件路徑 print '----返回文件路徑',os.path.dirname(os.getcwd()) #示例 #7os.path.basename(path) #返回文件名 print '----返回文件名',os.path.basename(os.getcwd()) #示例 #os.remove(dir) #dir爲要刪除的文件夾或者文件路徑 #os.rmdir(path) #path要刪除的目錄的路徑。須要說明的是,使用os.rmdir刪除的目錄必須爲空目錄,不然函數出錯 #os.path.isdir(name) #判斷name是否是一個目錄,name不是目錄就返回false #os.path.isfile(name) #判斷name是否是一個文件,不存在name也返回false #os.path.exists(name) #判斷是否存在文件或目錄name #os.path.getsize(name) #得到文件大小,若是name是目錄返回0L
- import os