Check that file exists: Difference between revisions

Added zkl
(Added zkl)
Line 1,351:
'end if
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
</lang>
 
=={{header|zkl}}==
<lang zkl>File.exists("input.txt") //--> True (in this case a sym link)
File.exists("/input.txt") //-->False
File.isDir("/") //-->True
File.isDir("docs") //-->False
</lang>
 
Anonymous user