WolframLang: File Exist

By Xah Lee. Date: .

Check File/Dir Existence

(* check file exist *)
FileExistsQ["c:/Users/xah/abc.txt"]
(* True *)

(* works on dir too *)
FileExistsQ["c:/Users/xah/"]
(* True *)

WolframLang: Shell Tasks