使用 pathlib 更好地處理路徑 pathlib 是 Python 3 的預設模塊,幫助避免使用大量的 os.path.join()。 拼接操作符:/ Path對象 / Path對象 Path對象 / 字元串 字元串 / Path對象 分解 parts屬性,可以返迴路徑中的每一部分 joinpa ...
使用 pathlib 更好地處理路徑
pathlib 是 Python 3 的預設模塊,幫助避免使用大量的 os.path.join()。
from pathlib import Path dataset = 'wiki_images' datasets_root = Path('/path/to/datasets/') train_path = datasets_root / dataset / 'train' test_path = datasets_root / dataset / 'test' for image_path in train_path.iterdir(): with image_path.open() as f: # note, open is a method of Path object # do something with an image
拼接操作符:/
Path對象 / Path對象
Path對象 / 字元串
字元串 / Path對象
分解
parts屬性,可以返迴路徑中的每一部分
joinpath
joinpath(*other)連接多個字元串到Path對象中
其他方法
p.exists() p.is_dir() p.parts p.with_name('sibling.png') # only change the name, but keep the folder p.with_suffix('.jpg') # only change the extension, but keep the folder and the name p.chmod(mode) p.rmdir()