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


Python os.path.exists()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。 os.path模块是python中OS模块的子模块,用于通用路径名操作。

os.path.exists()Python中的method方法用于检查指定的路径是否存在。此方法还可用于检查给定的路径是否引用了打开的文件描述符。

用法: os.path.exists(path)

参数:
path:代表文件系统路径的path-like对象。 path-like对象是表示路径的字符串或字节对象。

返回类型:此方法返回布尔型的布尔值。如果路径存在,则此方法返回True,否则返回False。

代码1:os.path.exists()方法的使用
# Python program to explain os.path.exists() method  
    
# importing os module  
import os 
  
# Specify path 
path = '/usr/local/bin/'
  
# Check whether the specified 
# path exists or not 
isExist = os.path.exists(path) 
print(isExist) 
  
  
# Specify path 
path = '/home/User/Desktop/file.txt'
  
# Check whether the specified 
# path exists or not 
isExist = os.path.exists(path) 
print(isExist)
输出:
True
False

注意: os.path.exists()如果未授予对请求的文件执行os.stat()的权限,即使该路径存在,函数也可能返回False。

参考: https://docs.python.org/3/library/os.path.html



相关用法


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