Python:检查文件或目录是否存在
Python是一种广泛使用的通用高级编程语言。它提供了许多功能,其中之一是检查文件或目录是否存在。这可以使用内置的操作系统模块。
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。 os.path
模块是Python中 OS 模块的子模块,用于常见的路径名操作。
检查文件是否存在
Python中的os.path.isfile()
方法用于检查指定路径是否为现有的常规文件。
注意: os.path.isfile()
确实遵循符号链接。
Syntax: os.path.isfile(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 the specified path is an existing regular file, otherwise returns False.
# Python program to explain os.path.isfile() method
# importing os module
import os
# Path
path = 'D:/Pycharm projects/GeeksforGeeks/Nikhil/test_nikhil.txt'
# Check whether the
# specified path is
# an existing file
isFile = os.path.isfile(path)
print(isFile)
# Path
path = 'D:/Pycharm projects/GeeksforGeeks/Nikhil/'
# Check whether the
# specified path is
# an existing file
isFile = os.path.isfile(path)
print(isFile)
输出:
True
False
检查目录是否存在
Python中的os.path.isdir()
方法用于检查指定路径是否为现有目录。此方法遵循符号链接,这意味着如果指定的路径是指向目录的符号链接,则该方法将返回True
。
Syntax: os.path.isdir(path)
Parameter:
path: A path-like object representing a file system path.
Return Type: This method returns a Boolean value of class bool. This method returns True if specified path is an existing directory, otherwise returns False.
示例 #1:使用 os.path.isdir() 方法。
# Python program to explain os.path.isdir() method
# importing os.path module
import os.path
# Path
path = 'D:/Pycharm projects/GeeksforGeeks/Nikhil/test_nikhil.txt'
# Check whether the
# specified path is an
# existing directory or not
isdir = os.path.isdir(path)
print(isdir)
# Path
path = 'D:/Pycharm projects/GeeksforGeeks/Nikhil/'
# Check whether the
# specified path is an
# existing directory or not
isdir = os.path.isdir(path)
print(isdir)
输出:
False
True
示例 #2:如果指定的路径是符号链接。
# Python program to explain os.path.isdir() method
# importing os.path module
import os.path
# Create a directory
# (in current working directory)
dirname = "GeeksForGeeks"
os.mkdir(dirname)
# Create a symbolic link
# pointing to above directory
symlink_path = "D:/Pycharm projects/GeeksforGeeks/Nikhil/"
os.symlink(dirname, symlink_path)
path = dirname
# Now, Check whether the
# specified path is an
# existing directory or not
isdir = os.path.isdir(path)
print(isdir)
path = symlink_path
# Check whether the
# specified path (which is a
# symbolic link ) is an
# existing directory or not
isdir = os.path.isdir(path)
print(isdir)
输出:
True
True
检查文件或目录是否存在
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.
例子:
# Python program to explain os.path.exists() method
# importing os module
import os
# Path
path = 'D:/Pycharm projects/GeeksforGeeks/Nikhil/test_nikhil.txt'
# Check whether the
# specified path is
# an existing file
isExist = os.path.exists(path)
print(isExist)
# Path
path = 'D:/Pycharm projects/GeeksforGeeks/Nikhil/'
# Check whether the
# specified path is
# an existing file
isExist = os.path.exists(path)
print(isExist)
输出:
True
True
注意: os.path.exists()
函数可能返回False
,如果未授予对请求的文件执行os.stat()
的权限,即使路径存在。
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。