python關於os模組的總結

2021-08-21 08:29:37 字數 553 閱讀 8647

最近工作中用到了os模組,之前對於這個模組不太熟悉,今天總結如下(有什麼不好的地方,大家多指點哦):

import os

help(os) --檢視幫助

os.system('pwd') ----返回當前所在的路徑

os.mkdir('資料夾名')  ---建立資料夾

os.makedirs('資料夾1/資料夾2')  --遞迴建立資料夾

os.getcwd() ---獲取當前目錄

os.chdir('路徑') ----改變預設目錄

os.listdir('./')  ----獲取目錄列表

os.rmdir('資料夾名')  ----刪除資料夾

os.rename('路徑+舊資料夾名','路徑+新資料夾名') ----修改檔名為新檔名

os.system('命令') ---可以執行shello命令

os.path.abspath('路徑')  ----返回絕對化的路徑

os.path.split('路徑+檔名') ---將路徑,檔名加入到乙個元組中返回

今天先到這,明天補充!

python之os模組總結

os模組提供了乙個輕便的方法使用要依賴作業系統的功能,整合了常用的檔案與資料夾操作。os.getcwd os.chdir os.path.split os.path.splitext os.path.splitdriver os.path.realpath path return the absol...

python之os模組總結

os模組簡單的來說它是乙個python的系統程式設計的操作模組,可以用來幫助我們處理檔案和目錄的作用,下面準備了一些os模組在日常比較常用的方法。首先我們需要先導入os模組 import os輸出當前系統平台 print os.name nt 若是windows則輸出 nt 若是linux unix...

python模組 OS模組

bin env python coding utf 8 import os print os.name 輸出主機平台 print os.getcwd 輸出當前目錄 print os.listdir os.getcwd 輸出當前目錄的檔案 橫向 for i in os.listdir os.getcw...