Python| os.path.exists() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。 os.path模块是Python中OS 模块的子模块,用于常见的路径名操作。
Python中的os.path.exists()
方法用于检查指定路径是否存在。此方法还可用于检查给定路径是否引用打开的文件描述符。
Syntax: os.path.exists(path)
Parameter:
path: A path-like object representing a file system path. A path-like object is either a string or bytes object representing a path.
Return Type: This method returns a Boolean value of class bool. This method returns True if path exists otherwise returns 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()
函数可能返回False ,如果未授予对请求的文件执行os.stat()的权限,即使路径存在。
参考: https://docs。 Python.org/3/library/os.path.html