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