好車配好輪。html
os.environ | 獲取系統環境變量 | |
os.name | 字符串指示當前使用平臺。win->'nt'; Linux->'posix' | |
os.sep | 操做系統特定的路徑分隔符,win下爲"\\",Linux下爲"/" | >>> os.getcwd() + os.sep + 'world.txt' |
'/tmp/world.txt' 目錄字符串拼接頗有用 | ||
os.linesep | 當前平臺使用的行終止符,win下爲"\t\n",Linux下爲"\n" | |
os.system('top') | 運行shell命令,直接顯示 | |
os.getcwd() | 查看當前目錄 | |
切換目錄 | ||
os.listdir() | 列出目錄下全部內容 | |
os.mkdir('test') | 新建單級目錄test | |
os.rmdir('test') | 刪除目錄test,目錄不爲空則報錯 | |
os.removedirs('ceshi/test') | 遞歸刪除目錄,ceshi也會被刪除,不爲空報錯 | |
os.makedirs('ceshi/test') | 新建多層遞歸目錄 | |
os.remove('test.txt') | 刪除文件 | |
os.rename('hello.txt','world.txt') | 重命名文件/目錄,前爲舊後爲新 | |
os.stat('/tmp/world.txt') | 獲取文件目錄信息 | |
os.access('/tmp/world.txt',os.F_OK) | os.access(path, mode);檢測權限 | os.F_OK: 做爲access()的mode參數,測試path是否存在。 |
os.R_OK: 包含在access()的mode參數中 , 測試path是否可讀。 | ||
os.W_OK 包含在access()的mode參數中 , 測試path是否可寫。 | ||
os.X_OK 包含在access()的mode參數中 ,測試path是否可執行。 | ||
os.chmod() | 用於更改文件或目錄的權限。 | http://www.runoob.com/python/os-chmod.html |
os.chown(path, uid, gid); | 用於更改文件全部者,若是不修改能夠設置爲 -1 | |
os.chroot() | 更改當前進程的根目錄爲指定的目錄,使用該函數須要管理員權限。 | |
os.path.abspath("world.txt") | 返回絕對路徑 | 返回結果: '/tmp/world.txt' |
os.path.basename("/tmp/world.txt") | 返回文件名 | 返回結果: 'world.txt' |
os.path.isabs("world.txt") | 若是是絕對路徑,返回True | 返回結果: False |
os.path.isdir("/usr") | 若是path是一個存在的目錄,則返回True。不然返回False | 返回結果: True |
os.path.isfile("world.txt") | 若是path是一個存在的文件,返回True。不然返回False | 返回結果: True |
os.path.split("/var/log/messages") | 把路徑分割爲文件名 和 目錄名 | 返回結果 : ('/var/log', 'messages') |
os.path.dirname("/var/log/messages") | 獲取文件的上級目錄 | 返回結果: '/var/log' |
os.path.join(path1[, path2[, ...]]) | 將多個路徑組合後返回,第一個絕對路徑以前的參數將被忽略,這個必會,往後用途很是普遍! | 請看下面實例 |
#linux下查找文件def find_file(name,start='/'):for relpath,dirs,files in os.walk(start): if name in files: full_path = os.path.join(start,relpath,name) file_path = os.path.normpath(os.path.abspath(full_path)) return file_path |