目錄判斷:
path="/home" #if [ ! -d ${path} ];then if [ -d ${path} ];then echo dir ${path} exist! else echo dir ${path} not exist! fi
免費學習影片教學分享:linux影片教學
檔判斷:
file="/home/log.txt" if [ -f ${file} ];then echo file ${file} exist! else echo file ${file} not exist! fi
相關文章教學推薦:linux教學
以上是linux中如何透過if語句判斷檔案或目錄是否存在的詳細內容。更多資訊請關注PHP中文網其他相關文章!