Python os.path.isfile() - 检查指定的路径是否为现有的常规文件

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程