Python os.path() 模塊
python os.path() 模塊
os.path 模塊主要用于獲取文件的屬性。
以下是 os.path 模塊的幾種常用方法:
方法 | 說(shuō)明 |
---|---|
os.path.abspath(path) | 返回絕對(duì)路徑 |
os.path.basename(path) | 返回文件名 |
os.path.commonprefix(list) | 返回list(多個(gè)路徑)中,所有path共有的最長(zhǎng)的路徑 |
os.path.dirname(path) | 返回文件路徑 |
os.path.exists(path) | 如果路徑 path 存在,返回 true;如果路徑 path 不存在,返回 false。 |
os.path.lexists | 路徑存在則返回true,路徑損壞也返回true |
os.path.expanduser(path) | 把path中包含的"~"和"~user"轉(zhuǎn)換成用戶目錄 |
os.path.expandvars(path) | 根據(jù)環(huán)境變量的值替換path中包含的"$name"和"${name}" |
os.path.getatime(path) | 返回最近訪問(wèn)時(shí)間(浮點(diǎn)型秒數(shù)) |
os.path.getmtime(path) | 返回最近文件修改時(shí)間 |
os.path.getctime(path) | 返回文件 path 創(chuàng)建時(shí)間 |
os.path.getsize(path) | 返回文件大小,如果文件不存在就返回錯(cuò)誤 |
os.path.isabs(path) | 判斷是否為絕對(duì)路徑 |
os.path.isfile(path) | 判斷路徑是否為文件 |
os.path.isdir(path) | 判斷路徑是否為目錄 |
os.path.islink(path) | 判斷路徑是否為鏈接 |
os.path.ismount(path) | 判斷路徑是否為掛載點(diǎn) |
os.path.join(path1[, path2[, ...]]) | 把目錄和文件名合成一個(gè)路徑 |
os.path.normcase(path) | 轉(zhuǎn)換path的大小寫和斜杠 |
os.path.normpath(path) | 規(guī)范path字符串形式 |
os.path.realpath(path) | 返回path的真實(shí)路徑 |
os.path.relpath(path[, start]) | 從start開(kāi)始計(jì)算相對(duì)路徑 |
os.path.samefile(path1, path2) | 判斷目錄或文件是否相同 |
os.path.sameopenfile(fp1, fp2) | 判斷fp1和fp2是否指向同一文件 |
os.path.samestat(stat1, stat2) | 判斷stat tuple stat1和stat2是否指向同一個(gè)文件 |
os.path.split(path) | 把路徑分割成 dirname 和 basename,返回一個(gè)元組 |
os.path.splitdrive(path) | 一般用在 windows 下,返回驅(qū)動(dòng)器名和路徑組成的元組 |
os.path.splitext(path) | 分割路徑,返回路徑名和文件擴(kuò)展名的元組 |
os.path.splitunc(path) | 把路徑分割為加載點(diǎn)與文件 |
os.path.walk(path, visit, arg) | 遍歷path,進(jìn)入每個(gè)目錄都調(diào)用visit函數(shù),visit函數(shù)必須有3個(gè)參數(shù)(arg, dirname, names),dirname表示當(dāng)前目錄的目錄名,names代表當(dāng)前目錄下的所有文件名,args則為walk的第三個(gè)參數(shù) |
os.path.supports_unicode_filenames | 設(shè)置是否支持unicode路徑名 |
1. 實(shí)例
以下實(shí)例演示了 os.path 相關(guān)方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os print( os.path.basename('/root/codebaoku.txt') ) # 返回文件名 print( os.path.dirname('/root/codebaoku.txt') ) # 返回目錄路徑 print( os.path.split('/root/codebaoku.txt') ) # 分割文件名與路徑 print( os.path.join('root','test','codebaoku.txt') ) # 將目錄和文件名合成一個(gè)路徑
執(zhí)行以上程序輸出結(jié)果為:
codebaoku.txt /root ('/root', 'codebaoku.txt') root/test/codebaoku.txt
以下實(shí)例輸出文件的相關(guān)信息。
#!/usr/bin/python # -*- coding: utf-8 -*- import os import time file='/root/codebaoku.txt' # 文件路徑 print( os.path.getatime(file) ) # 輸出最近訪問(wèn)時(shí)間 print( os.path.getctime(file) ) # 輸出文件創(chuàng)建時(shí)間 print( os.path.getmtime(file) ) # 輸出最近修改時(shí)間 print( time.gmtime(os.path.getmtime(file)) ) # 以struct_time形式輸出最近修改時(shí)間 print( os.path.getsize(file) ) # 輸出文件大小(字節(jié)為單位) print( os.path.abspath(file) ) # 輸出絕對(duì)路徑 print( os.path.normpath(file) ) # 規(guī)范path字符串形式
執(zhí)行以上程序輸出結(jié)果為:
1539052805.5735736 1539052805.5775735 1539052805.5735736 time.struct_time(tm_year=2018, tm_mon=10, tm_mday=9, tm_hour=2, tm_min=40, tm_sec=5, tm_wday=1, tm_yday=282, tm_isdst=0) 7 /root/codebaoku.txt /root/codebaoku.txt
相關(guān)文章
- Python 文件I/O
- Python OS 文件/目錄方法
- Python JSON
- Python 列表
- Python 集合
- Python 搜索樹(shù)
- Python 堆
- Python 排序算法
- Python 搜索算法
- Python 算法理由
- Python3 教程
- Python3 環(huán)境搭建
- Python3 列表(List)
- Python3 輸入和輸出
- Python3 OS 文件/目錄方法
- Python3 面向?qū)ο?/a>
- Python3 作用域
- Python3 網(wǎng)絡(luò)編程
- Python3 內(nèi)置函數(shù)
- Python3 MySQL 數(shù)據(jù)庫(kù)連接 - PyMySQL 驅(qū)動(dòng)