os模組的幾種方法

2022-09-16 09:30:10 字數 1926 閱讀 9310

os.makedirs('

dirname1/dirname2

') 可生成多層遞迴目錄

os.removedirs(

'dirname1

') 若目錄為空,則刪除,並遞迴到上一級目錄,如若也為空,則刪除,依此類推

os.mkdir(

'dirname

') 生成單級目錄;相當於shell中mkdir dirname

os.rmdir(

'dirname

') 刪除單級空目錄,若目錄不為空則無法刪除,報錯;相當於shell中rmdir dirname

os.listdir(

'dirname

') 列出指定目錄下的所有檔案和子目錄,包括隱藏檔案,並以列表方式列印

os.remove() 刪除乙個檔案

os.rename(

"oldname

","newname

") 重新命名檔案/目錄

os.stat(

'path/filename

') 獲取檔案/目錄資訊

os.system(

"bash command

") 執行shell命令,直接顯示

os.popen(

"bash command).read() 執行shell命令,獲取執行結果

os.getcwd() 獲取當前工作目錄,即當前python指令碼工作的目錄路徑

os.chdir(

"dirname

") 改變當前指令碼工作目錄;相當於shell下cd

os.path

os.path.abspath(path) 返回path規範化的絕對路徑 os.path.split(path) 將path分割成目錄和檔名二元組返回

os.path.dirname(path) 返回path的目錄。其實就是os.path.split(path)的第乙個元素

os.path.basename(path) 返回path最後的檔名。如何path以/或\結尾,那麼就會返回空值。即os.path.split(path)的第二個元素

os.path.exists(path) 如果path存在,返回true;如果path不存在,返回false

os.path.isabs(path) 如果path是絕對路徑,返回true

os.path.isfile(path) 如果path是乙個存在的檔案,返回true。否則返回false

os.path.isdir(path) 如果path是乙個存在的目錄,則返回true。否則返回false

os.path.join(path1[, path2[, ...]]) 將多個路徑組合後返回,第乙個絕對路徑之前的引數將被忽略

os.path.getatime(path) 返回path所指向的檔案或者目錄的最後訪問時間

os.path.getmtime(path) 返回path所指向的檔案或者目錄的最後修改時間

os.path.getsize(path) 返回path的大小

stat 結構:

st_mode: inode 保護模式

st_ino: inode 節點號。

st_dev: inode 駐留的裝置。

st_nlink: inode 的鏈結數。

st_uid: 所有者的使用者id。

st_gid: 所有者的組id。

st_size: 普通檔案以位元組為單位的大小;包含等待某些特殊檔案的資料。

st_atime: 上次訪問的時間。

st_mtime: 最後一次修改的時間。

st_ctime: 由作業系統報告的"ctime"。在某些系統上(如unix)是最新的元資料更改的時間,在其它系統上(如windows)是建立時間(詳細資訊參見平台的文件)。

stat 結構

Python 匯入模組的幾種方法

下級資料夾 子目錄 上級資料夾 父目錄 當你匯入乙個模組,python 解析器搜尋模組的順序是 當前目錄 shell 變數 windows環境變數 pythonpath 記錄的每個目錄。folder1 mod1.py mod2.py import module1 module2 modulen mo...

os模組常用方法

os模組 os.name 輸出字串指示正在使用的平台。如果是window 則用 nt 表示,對於linux unix使用者,它是 posix result os.name print result os.getcwd 函式得到當前工作目錄 就是你的程序所工作的目錄 即當前python指令碼工作的目錄...

OS 模組常用方法

os.getcwd 返回當前工作目錄 os.chdir path 改變當前工作目錄 os.listdir path 列出指定目錄下的所有的資料夾和檔案 os.chmod path,mode 更改許可權 os.mkdir path mode 以數字mode的mode建立乙個名為path的資料夾 os....