String getAbsolutePath()
_INSERT_METHOD_SIGNATURE_HERE_
Description:
This method returns the absolute pathname string of this abstact pathname.
Example
File file = new File("test/directory");
Logger.log("get absolute path: " + file.getAbsolutePath());
The example above returns the absolute pathname.