Name
IsDirectory -- check for file or directory (V2.0)
Synopsis
r = IsDirectory(f$)
Function
This function checks if
f$
is a file or directory. If it is a directory, this function returns
True
, otherwise
False
.
Inputs
f$
file system object
Results
r
True
if
f$
is a directory,
False
otherwise
Example
r = IsDirectory("S:")
This returns
True
.
Show TOC