linux檢查檔案是否存在的方法:1.利用test指令來檢查,語法「test -e <檔案>」;2、利用bash shell指令來檢查,語法「[-f 檔案路徑] && echo "found" || echo "not found"」。
本教學操作環境:linux5.9.8系統、Dell G3電腦。
Linux檢查檔案是否存在
它常用來測試條件表達式,用到的指令為test -e <檔>
。
假設我們有檔案目錄/home/benben/go_project
和檔案/home/benben/go_project/test.txt
,下面我們用bash shell指令來偵測下這個目錄和檔案是否存在。
[-d /home/benben/go_project ] && echo "found" || echo "not found"
或[-d . /go_project ] && echo "found" || echo "not found"
。 [-f /home/benben/go_project/test.txt ] && echo "found" || echo "not found"
或[-f ./test.txt ] && echo "found" || echo "not found"
#相關推薦:《Linux影片教學》
以上是linux怎麼檢查檔案是否存在的詳細內容。更多資訊請關注PHP中文網其他相關文章!