我正在编写一个 cli 工具,需要一些路径作为输入。
我正在用 python 编写这个工具,并且不想使用 3.6 以下的 python 解释器。使用包pathlib似乎是处理 python 中的路径时的现代方法。所以如果可能的话我想离开os并os.path留下来。
看起来 pathlib 将路径解释~/test/为当前工作目录的相对路径,下面的代码显示了它
import pathlib
test_path = pathlib.Path('~/test')
absolute_path = test_path.absolute()
print(f"{str(test_path):>31}\n{str(absolute_path):>31}")
# output:
# ~/test
# /home/myUser/~/test
如何使用 pathlib 识别以~绝对路径开头的每个路径并自动扩展~到用户主目录?
jeck猫
相关分类