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


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


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

os.path.isdir()Python中的method方法用于检查指定的路径是否为现有目录。此方法遵循符号链接,这意味着如果指定的路径是指向目录的符号链接,则该方法将返回True。

用法: os.path.isdir(path)

参数:
path:代表文件系统路径的path-like对象。

返回类型:此方法返回布尔型的布尔值。如果指定的路径是现有目录,则此方法返回True,否则返回False。

代码1:用于os.path.isdir()方法

# Python program to explain os.path.isdir() method  
    
# importing os.path module  
import os.path 
  
# Path 
path = '/home/User/Documents/file.txt'
  
# Check whether the  
# specified path is an 
# existing directory or not 
isdir = os.path.isdir(path) 
print(isdir) 
  
  
# Path 
path = '/home/User/Documents/'
  
# 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 = "/home/User/Desktop/gfg"
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

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



相关用法


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