當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。