参考:
https://docs.python.org/zh-cn/3/library/pathlib.html#correspondence-to-tools-in-the-os-module
- Path.parents # 返回所有上级目录的列表
- Path.parts # 分割路径 类似os.path.split(), 不过返回元组
- Path.root # 返回路径的根目录
- Path.is_dir() # 判断是否是目录
- Path.is_dir() # 是否是文件
- Path.exists() # 判断路径是否存在
- Path.open() # 打开文件(支持with)
- Path.resolve() # 返回绝对路径
- Path.cwd() # 返回当前目录
- Path.iterdir() # 遍历目录的子目录或者文件
- Path.mkdir() # 创建目录
- Path.rename() # 重命名路径
- Path.unlink() # 删除文件或目录(目录非空触发异常)
- Path.joinpath() # 拼接路径