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


Python os.rmdir()用法及代碼示例


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。

如果文件名和路徑無效或無法訪問,或者具有正確類型但操作係統不接受的其他參數,則os模塊中的所有函數都會引發OSError。

os.rmdir()Python中的方法用於刪除或刪除空目錄。如果指定的路徑不是空目錄,將引發OSError。


用法: os.rmdir(path, *, dir_fd = None) 

參數:
path:表示文件路徑的path-like對象。 path-like對象是表示路徑的字符串或字節對象。
dir_fd(可選):引用目錄的文件描述符。此參數的默認值為“無”。
如果指定的路徑是絕對路徑,則dir_fd將被忽略。

Note:參數列表中的“ *”表示以下所有參數(此處為“ dir_fd”)均為純關鍵字參數,可以使用其名稱(而不是位置參數)提供它們。

返回類型:此方法不返回任何值。

代碼1:使用os.rmdir()方法刪除空目錄
# Python program to explain os.rmdir() method  
    
# importing os module  
import os 
  
# Directory name 
directory = "ihritik"
  
# Parent Directory 
parent = "/home/User/Documents"
  
# Path 
path = os.path.join(parent, directory) 
  
# Remove the Directory 
# "ihritik" 
os.rmdir(path) 
print("Directory '%s' has been removed successfully" %directory)
輸出:
Directory 'ihritik' has been removed successfully
代碼2:使用os.rmdir()方法時處理錯誤
# Python program to explain os.rmdir() method  
    
# importing os module  
import os 
  
# Directory name 
directory = "ihritik"
  
# Parent Directory 
parent = "/home/User/Documents"
  
# Path 
path = os.path.join(parent, directory) 
  
  
# Remove the Directory 
# "ihritik" 
try: 
    os.rmdir(path) 
    print("Directory '%s' has been removed successfully" %directory) 
except OSError as error: 
    print(error) 
    print("Directory '%s' can not be removed" %directory) 
  
  
# if the specified path  
# is not an empty directory 
# then permission error will 
# be raised 
  
# similarly if specified path 
# is invalid or is not a  
# directory then corresponding 
# OSError will be raised
輸出:
[Errno 13] Permission denied: '/home/User/Documents/ihritik'
Directory 'ihritik' can not be removed

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



相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.rmdir() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。