如果你要確定文件存在的話然後做些什麼,那麼使用try是最好不過的 如果您不打算立即打開文件,則可以使用os.path.isfile檢查文件 如果path是現有常規文件,則返回true。對於相同的路徑,islink()和isfile()都可以為true 如果你需要確定它是一個文件。 從Python 3 ...
如果你要確定文件存在的話然後做些什麼,那麼使用try是最好不過的
如果您不打算立即打開文件,則可以使用os.path.isfile檢查文件
如果path是現有常規文件,則返回true。對於相同的路徑,islink()和isfile()都可以為true
import os.path os.path.isfile(fname)
如果你需要確定它是一個文件。
從Python 3.4開始,該pathlib模塊提供了一種面向對象的方法(pathlib2在Python 2.7中向後移植):
from pathlib import Path my_file = Path("/path/to/file") if my_file.is_file(): # file exists
要檢查目錄,請執行以下操作:
if my_file.is_dir(): # directory exists
要檢查Path對象是否存在,不管它是文件還是目錄,請使用exists():
if my_file.exists(): # path exists
你也可以在一個try中使用resolve(strict=True):
try: my_abs_path = my_file.resolve(strict=True) except FileNotFoundError: # doesn't exist else: # exists
作者:熊貓燒香
鏈接:www.pythonheidong.com/blog/article/15/
來源:python黑洞網