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


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


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

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

os.unlink()Python中的方法用於刪除或刪除文件路徑。此方法在語義上與os.remove()方法相同。喜歡os.remove(),方法也無法刪除或刪除目錄。如果給定路徑是目錄,則IsADirectoryError此方法將引發異常。os.rmdir()方法可用於刪除目錄。


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

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

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

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

代碼1:使用os.unlink()方法刪除或刪除文件路徑
# Python program to explain os.unlink() method  
    
# importing os module  
import os 
  
# File Path 
path = "/home / ihritik / Documents / file1.txt"
  
  
# Remove the file path 
# using os.unlink() method 
os.unlink(path) 
  
print("File path has been removed successfully")
輸出:
File path has been removed successfully
代碼2:如果給定路徑是目錄
# Python program to explain os.unlink() method  
    
# importing os module  
import os 
  
# Path 
path = "/home / User / Documents / ihritik"
  
  
# if the given path  
# is a directory then  
# 'IsADirectoryError' exception 
# will raised  
  
# Remove the given 
# file path 
os.unlink(path) 
print("File path has been removed successfully") 
  
# Similarly, if the specified 
# file path does not exists or   
# is invalid then corresponding 
# OSError will be raised
輸出:
Traceback (most recent call last):
  File "unlink.py", line 17, in 
    os.unlink(path)
IsADirectoryError: [Errno 21] Is a directory: '/home/User/Documents/ihritik'
代碼3:使用os.unlink()方法時處理錯誤
# Python program to explain os.unlink() method  
    
# importing os module  
import os 
  
# path 
path = '/home / User / Documents / ihritik'
  
# Try Removing the given  
# file path using 
# try and except block  
try: 
    os.unlink(path) 
    print("File path removed successfully") 
  
# If the given path is  
# a directory 
except IsADirectoryError: 
    print("The given path is a directory") 
  
# If path is invalid 
# or does not exists 
except FileNotFoundError : 
    print("No such file or directory found.") 
  
# If the process has not 
# the permission to remove 
# the given file path  
except PermissionError: 
    print("Permission denied") 
  
# For other errors 
except : 
    print("File can not be removed")
輸出:
The given path is a directory

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



相關用法


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