Rumah > Artikel > pembangunan bahagian belakang > 解析pathlib的使用
pathlib 为path3.x版本后才出现,功能比较强大,对于目录操作更为简便,如使用python3.x操作目录可以先考虑使用此模块.
import pathlib ---- > 只是本次用的一点功能,方便记忆
1. relative_to
path1 = Path("/home/dante")
path2 = Path("/home/dante/project/src")
path2.relative_to(path1) ----------> project/src 将path1 和path2目录中相同部分去掉
2. glob 和 fnmatch
glob 是pathlib.Path 的一个属性,返回一个生成器 循环后可以通过stem(取文件名),suffix(后缀,返回的是字符串),suffixes--> 返回的是list
fnmatch 是单独的一个库 作用都是过滤关键字 返回bool值
3. pathlib读去文件 3.5.x新特性
pathlib.path('filename').read_text() 就可以直接读取文件
Atas ialah kandungan terperinci 解析pathlib的使用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!