使用 os 模塊
判斷文件是否存在
os.path.isfile(path)
判斷目錄是否存在
os.path.isdir(path)
判斷文件是否存在
# 使用 path 模塊os.path.exists(path)# 使用 access() 方法os.access(path, os.F_OK)
使用 open 函數和異常捕獲
如果直接用open()函數打開一個不存在的文件時,程序會拋出異常,我們可以通過 try 語句來捕獲異常以達到判斷文件是否存在的目的。
如果文件不存在,open() 函數會拋出FileNotFoundError異常。如果文件無操作權限,則會拋出PersmissionError異常。
filePath = '/path/to/file'try: file = open(filePath) file.close()except FileNotFoundError: print("No such file or directory: '%s'" % filePath)except IsADirectoryError: print("Is a directory: '%s'" % filePath)except PermissionError: print("Permission denied: '%s'" % filePath)else: print("File is exist: '%s'" % filePath)
使用 pathlib 模塊
import pathlibpath = pathlib.Path('path/to/file')# 判斷路徑是否存在path.exists()# 判斷是否為文件path.is_file()# 判斷是否為目錄path.is_dir()
-
python
+關注
關注
56文章
4782瀏覽量
84453
原文標題:Python 判斷文件/目錄是否存在
文章出處:【微信號:magedu-Linux,微信公眾號:馬哥Linux運維】歡迎添加關注!文章轉載請注明出處。
發布評論請先 登錄
相關推薦
評論