我尝试使用 Python 检查路径是否存在于 Databricks 中:
try:
dirs = dbutils.fs.ls ("/my/path")
pass
except IOError:
print("The path does not exist")
如果路径不存在,我希望该except
语句执行。但是,该语句不是except
语句,而是try
失败并出现错误:
java.io.FileNotFoundException: GET ...
ErrorMessage=The specified path does not exist.
如何正确捕捉FileNotFoundException
?