其他分享
首页 > 其他分享> > pathlib的用法

pathlib的用法

作者:互联网

在目录树中移动:

>>> p = Path('/etc')
>>> q = p / 'init.d' / 'reboot'
>>> q
PosixPath('/etc/init.d/reboot')
>>> q.resolve()
PosixPath('/etc/rc.d/init.d/halt')

标签:resolve,PosixPath,reboot,pathlib,etc,init,用法
来源: https://www.cnblogs.com/h694879357/p/15364683.html