Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 265 Bytes

557-data-isfile.markdown

File metadata and controls

12 lines (8 loc) · 265 Bytes

ISFILE

b = ISFILE (file)

Returns true if the string "f" is a regular file.

Example

print IsFile("C:\windows\EXPLORER.EXE") ' Output 1 on Windows, otherwise 0 print IsFile("/etc/passwd") ' Output 1 on Linux, otherwise 0 
close