mirror of
https://github.com/corda/corda.git
synced 2025-06-17 22:58:19 +00:00
classpath progress
This commit is contained in:
@ -29,6 +29,16 @@ public class File {
|
||||
return path;
|
||||
}
|
||||
|
||||
private static native String toCanonicalPath(String path);
|
||||
|
||||
public String getCanonicalPath() {
|
||||
return toCanonicalPath(path);
|
||||
}
|
||||
|
||||
public File getCanonicalFile() {
|
||||
return new File(getCanonicalPath());
|
||||
}
|
||||
|
||||
private static native String toAbsolutePath(String path);
|
||||
|
||||
public String getAbsolutePath() {
|
||||
|
Reference in New Issue
Block a user