Returns the absolute path of the file represented by the specified file object.
Syntax
getAbsolutePath( file )
file.getAbsolutePath( )
Parameters
Returns
path
|
the absolute path of the specified file object.
|
Example
fh = File( tempFileName )
println( "path: " + getAbsolutePath( fh ) )
|