Check that file exists: Difference between revisions

Line 782:
end
end</lang>
 
 
=={{header|Maple}}==
<lang Maple>with(FileTools):
Exists("input.txt");
Exists("docs") and IsDirectory("docs");
Exists("/input.txt");
Exists("/docs") and IsDirectory("/docs");</lang>
 
=={{header|Mathematica}}==
Anonymous user