Package java.io
Class File

Public Method getCanonicalPath

String getCanonicalPath()

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

This method returns the canonical pathname string of this abstact pathname.

Example

   File file = new File("test/directory");
   Logger.log("get canonical path: " + file.getCanonicalPath());

The example above returns the canonical pathname.