operator 模塊提供了一套與 Python 的內置運算符對應的高效率函數。 1.函數的種類 函數包含的種類有:對象的比較運算、邏輯運算、數學運算和序列運算 2.比較運算 運算 函數 語法 小於 lt(a, b) a < b 小於等於 le(a, b) a <= b 大於 gt(a, b) a ...
pathlib 模塊提供了表示文件系統路徑的類,可適用於不同的操作系統。
使用 pathlib 模塊,相比於 os 模塊可以寫出更簡潔,易讀的代碼。pathlib 模塊中的 Path 類繼承自 PurePath,對 PurePath 中的部分方法進行了重載,相比於 os.path 有更高的抽象級別。
本文將帶你學習如何使用 pathlib 模塊中的 Path 類讀寫文件、操縱文件路徑和基礎文件系統,統計目錄下的文件類型以及查找匹配目錄下某一類型文件等。
下麵就開始進入我們的學習時刻。
1.獲取目錄
- Path.cwd(),返迴文件當前所在目錄。
- Path.home(),返回用戶的主目錄。
應用示例:
from pathlib import Path
currentPath = Path.cwd()
homePath = Path.home()
print("文件當前所在目錄:%s\n用戶主目錄:%s" %(currentPath, homePath))
2.目錄拼接
斜杠 / 操作符用於拼接路徑,比如創建子路徑。
應用示例:
from pathlib import Path
currentPath = Path.cwd()
newPath = currentPath / 'python-100'
print("新目錄為:%s" %(newPath))
3.創建、刪除目錄
- Path.mkdir(),創建給定路徑的目錄。
- Path.rmdir(),刪除該目錄,目錄文件夾必須為空。
應用示例:
from pathlib import Path
currentPath = Path.cwd()
makePath = currentPath / 'python-100'
makePath.mkdir()
print("創建的目錄為:%s" %(nmakePath))
from pathlib import Path
currentPath = Path.cwd()
delPath = currentPath / 'python-100'
delPath.rmdir()
print("刪除的目錄為:%s" %(delPath))
4.讀寫文件
- Path.open(mode='r'),以 "r" 格式打開 Path 路徑下的文件,若文件不存在即創建後打開。
- Path.read_bytes(),打開 Path 路徑下的文件,以位元組流格式讀取文件內容,等同 open 操作文件的 "rb" 格式。
- Path.read_text(),打開 Path 路徑下的文件,以 str 格式讀取文件內容,等同 open 操作文件的 "r" 格式。
- Path.write_bytes(),對 Path 路徑下的文件進行寫操作,等同 open 操作文件的 "wb" 格式。
- Path.write_text(),對 Path 路徑下的文件進行寫操作,等同 open 操作文件的 "w" 格式。
應用示例:
from pathlib import Path
currentPath = Path.cwd()
mkPath = currentPath / 'python-100.txt'
with mkPath.open('w') as f: # 創建並以 "w" 格式打開 python-100.txt 文件。
f.write('python-100') # 寫入 python-100 字元串。
f = open(mkPath, 'r')
print("讀取的文件內容為:%s" % f.read())
f.close()
from pathlib import Path
currentPath = Path.cwd()
mkPathText = currentPath / 'python-100-text.txt'
mkPathText.write_text('python-100')
print("讀取的文件內容為:%s" % mkPathText.read_text())
str2byte = bytes('python-100', encoding = 'utf-8')
mkPathByte = currentPath / 'python-100-byte.txt'
mkPathByte.write_bytes(str2byte)
print("讀取的文件內容為:%s" % mkPathByte.read_bytes())
5.獲取文件所在目錄的不同部分欄位
- Path.resolve(),通過傳入文件名,返迴文件的完整路徑。
- Path.name,可以獲取文件的名字,包含尾碼名。
- Path.parent,返迴文件所在文件夾的名字。
- Path.stem,獲取文件名不包含尾碼名。
- Path.suffix,獲取文件的尾碼名。
- Path.anchor,獲取文件所在的盤符。
from pathlib import Path
txtPath = Path('python-100.txt')
nowPath = txtPath.resolve()
print("文件的完整路徑為:%s" % nowPath)
print("文件完整名稱為(文件名+尾碼名):%s" % nowPath.name)
print("文件名為:%s" % nowPath.stem)
print("文件尾碼名為:%s" % nowPath.suffix)
print("文件所在的文件夾名為:%s" % nowPath.parent)
print("文件所在的盤符為:%s" % nowPath.anchor)
6.文件、路徑是否存在判斷
- Path.exists(),判斷 Path 路徑是否指向一個已存在的文件或目錄,返回 True 或 False。
- Path.is_dir(),判斷 Path 是否是一個路徑,返回 True 或 False。
- Path.is_file(),判斷 Path 是否指向一個文件,返回 True 或 False。
from pathlib import Path
currentPath = Path.cwd() / 'python'
print(currentPath.exists()) # 判斷是否存在 python 文件夾,此時返回 False。
print(currentPath.is_dir()) # 判斷是否存在 python 文件夾,此時返回 False。
currentPath.mkdir() # 創建 python 文件夾。
print(currentPath.exists()) # 判斷是否存在 python 文件夾,此時返回 True。
print(currentPath.is_dir()) # 判斷是否存在 python 文件夾,此時返回 True。
currentPath = Path.cwd() / 'python-100.txt'
print(currentPath.exists()) # 判斷是否存在 python-100.txt 文件,此時文件未創建返回 False。
print(currentPath.is_file()) # 判斷是否存在 python-100.txt 文件,此時文件未創建返回 False。
f = open(currentPath,'w') # 創建 python-100.txt 文件。
f.close()
print(currentPath.exists()) # 判斷是否存在 python-100.txt 文件,此時返回 True。
print(currentPath.is_file()) # 判斷是否存在 python-100.txt 文件,此時返回 True。
7.文件統計以及匹配查找
- Path.iterdir(),返回 Path 目錄文件夾下的所有文件,返回的是一個生成器類型。
- Path.glob(pattern),返回 Path 目錄文件夾下所有與 pattern 匹配的文件,返回的是一個生成器類型。
- Path.rglob(pattern),返回 Path 路徑下所有子文件夾中與 pattern 匹配的文件,返回的是一個生成器類型。
# 使用 Path.iterdir() 獲取當前文件下的所有文件,並根據尾碼名統計其個數。
#學習中遇到問題沒人解答?小編創建了一個Python學習交流群:153708845
import pathlib
from collections import Counter
currentPath = pathlib.Path.cwd()
gen = (i.suffix for i in currentPath.iterdir())
print(Counter(gen))
import pathlib
from collections import Counter
currentPath = pathlib.Path.cwd()
gen = (i.suffix for i in currentPath.glob('*.txt')) # 獲取當前文件下的所有 txt 文件,並統計其個數。
print(Counter(gen))
gen = (i.suffix for i in currentPath.rglob('*.txt')) # 獲取目錄中子文件夾下的所有 txt 文件,並統計其個數。
print(Counter(gen))
8.總結
本文給大家介紹了 Python 的 pathlib 模塊,為 Python 工程師對該模塊的使用提供了支撐,讓大家瞭解如何使用 pathlib 模塊讀寫文件、操縱文件路徑和基礎文件系統,統計目錄下的文件類型以及查找匹配目錄下某一類型文件等。