Python os.path.isfile()
Python中的os.path.isfile()方法用于检查指定的路径是否为现有的常规文件。
语法:os.path.isfile(路径)
参数:
path:表示文件系统路径的类路径对象。类路径对象是表示路径的字符串或字节对象。
返回类型:此方法返回一个类bool的布尔值。如果指定的路径是一个现有的常规文件,此方法返回True,否则返回False。
示例1
使用os.path.isfile()方法
# Python program to explain os.path.isfile() method
# importing os module
import os
# Path
path = '/home/User/Desktop/file.txt'
# Check whether the
# specified path is
# an existing file
isFile = os.path.isfile(path)
print(isFile)
# Path
path = '/home/User/Desktop/'
# Check whether the
# specified path is
# an existing file
isFile = os.path.isfile(path)
print(isFile)
输出:
True
False