Returns a new file created using the canonical path of this file. Equivalent to new File(this.getCanonicalPath()). @return the new file constructed from this file's canonical path. @throws IOException if an I/O error occurs. @see java.lang.SecurityManager#checkPropertyAccess
()
| 671 | * @see java.lang.SecurityManager#checkPropertyAccess |
| 672 | */ |
| 673 | public File getCanonicalFile() throws IOException { |
| 674 | return new File(getCanonicalPath()); |
| 675 | } |
| 676 | |
| 677 | private native byte[] getCanonImpl(byte[] filePath); |
| 678 |
nothing calls this directly
no test coverage detected