Returns whether the file object represents an absolute pathname.
Syntax
isAbsolute( file )
file.isAbsolute( )
Parameters
Returns
boolean
|
true if file object represents an absolute pathname.
false if file object does not represent an absolute pathname.
|
Example
if fh.isAbsolute( ) then
println( "absolute pathname" )
end
|