当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python pathlib.Path.exists用法及代码示例


用法:

Path.exists()

路径是否指向现有文件或目录:

>>> Path('.').exists()
True
>>> Path('setup.py').exists()
True
>>> Path('/etc').exists()
True
>>> Path('nonexistentfile').exists()
False

注意

如果路径指向符号链接,exists() 返回符号链接 points to 是否为现有文件或目录。

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 pathlib.Path.exists。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。