Returns whether the file object represents a directory.
Syntax
isDirectory( file )
file.isDirectory( )
Parameters
Returns
boolean
|
true if file object represents a directory.
false if file object does not represent a directory.
|
Example
if fh.isDirectory( ) then
println( "is a directory" )
end
|