RosettaCodeData/Task/Check-that-file-exists/Mathematica/check-that-file-exists.math

7 lines
141 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
wd = NotebookDirectory[];
FileExistsQ[wd <> "input.txt"]
DirectoryQ[wd <> "docs"]
FileExistsQ["/" <> "input.txt"]
DirectoryQ["/" <> "docs"]