Python中pathlib 模組的用法

嗨学编程發表於2024-04-17

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 模組讀寫檔案、操縱檔案路徑和基礎檔案系統,統計目錄下的檔案型別以及查詢匹配目錄下某一型別檔案等。

相關文章