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


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


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

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

os.remove()Python中的方法用於刪除或刪除文件路徑。此方法無法刪除或刪除目錄。如果指定的路徑是目錄,則該方法將引發OSError。os.rmdir()可用於刪除目錄。


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

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

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

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

代碼1:使用os.remove()方法刪除文件
# Python program to explain os.remove() method  
    
# importing os module  
import os 
  
# File name 
file = 'file.txt'
  
# File location 
location = "/home/User/Documents"
  
# Path 
path = os.path.join(location, file) 
  
# Remove the file 
# 'file.txt' 
os.remove(path) 
print("%s has been removed successfully" %file)
輸出:
file.txt has been removed successfully
代碼2:如果指定的路徑是目錄
# Python program to explain os.remove() method  
    
# importing os module  
import os 
  
# Path 
path = "/home/User/Documents/ihritik"
  
# Remove the specified 
# file path 
os.remove(path) 
print("% s has been removed successfully" % file) 
  
# if the specified path  
# is a directory then  
# 'IsADirectoryError' error 
# will raised  
  
# Similarly if the specified 
# file path does not exists or   
# is invalid then corresponding 
# OSError will be raised
輸出:
Traceback (most recent call last):
  File "osremove.py", line 11, in 
    os.remove(path)
IsADirectoryError: [Errno 21] Is a directory: '/home/User/Documents/ihritik'
代碼3:使用os.remove()方法時處理錯誤
# Python program to explain os.remove() method  
    
# importing os module  
import os 
  
# path 
path = '/home/User/Documents/ihritik'
  
# Remove the specified  
# file path 
try: 
    os.remove(path) 
    print("% s removed successfully" % path) 
except OSError as error: 
    print(error) 
    print("File path can not be removed")
輸出:
[Errno 21] Is a directory: '/home/User/Documents/ihritik'
File path can not be removed

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



相關用法


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