In java doc about
File#getPath()
writes:
Converts this abstract pathname into a pathname string.
I try to w
An abstract pathname is a java.io.File
object and a pathname string is a java.lang.String
object. Both reference the same file on the disk.
How do I know?
The first sentence of the Javadoc of java.io.File
explains:
An abstract representation of file and directory pathnames.
It goes on to explain why:
User interfaces and operating systems use system-dependent pathname strings to name files and directories. This class presents an abstract, system-independent view of hierarchical pathnames.
The abstract pathname is just the string form of the file/location held in the File
object.
If you check the javadoc of File#toString()
:
Returns the pathname string of this abstract pathname. This is just the string returned by the
getPath()
method.
See javadoc: abstract pathname = File
These are independent of operating system peculiarities of notation.
The string form gives you what you need to write on your current operating system to refer to that file.