RosettaCodeData/Task/Check-that-file-exists/Maple/check-that-file-exists.maple
2023-07-01 13:44:08 -04:00

5 lines
142 B
Text

with(FileTools):
Exists("input.txt");
Exists("docs") and IsDirectory("docs");
Exists("/input.txt");
Exists("/docs") and IsDirectory("/docs");