-e File exists.
是否有一個用於存在目錄? ,因爲我沒有看到它http://perldoc.perl.org/functions/-X.htmlPerl目錄相當於-e
或者什麼是測試它的最佳方法?
next unless (-e $dir . "/dirname"); -e only for file so doesnt work
我試圖避免做opendir and grep
找到目錄名稱,因爲它似乎是矯枉過正。
更新的問題:
做perl concat $ dir。 「/ dirname」在執行-e或-d檢查之前?
-d標誌是你正在尋找 –
你也可能需要閱讀'的perldoc -f -X'。 –
你似乎很困惑。 '-e'告訴你它的論點是否存在;它不詢問它的inode類型。 – tchrist