0
我剛剛在Python 3.6
中試驗了pathlib
庫。我想檢查在給出的路徑中是否存在具有給定文件名的文件。這裏是我的代碼:Python 3.6中路徑檢查的錯誤輸出
from pathlib import Path
f = Path('/Libraries/Documents/sample.txt')
print("File {} Exists".format(f)) if f.exists() else print("False")
而且,我得到的輸出是:
>>> False
,而這樣的文件,這條道路真正存在。
上面的代碼中可能的錯誤是什麼?