Skip to content

Instantly share code, notes, and snippets.

@vigneshrcsengg
Created September 26, 2021 09:59
Show Gist options
  • Save vigneshrcsengg/ca6ae2681d3f5e00b1ea2aeef2a06ace to your computer and use it in GitHub Desktop.
Save vigneshrcsengg/ca6ae2681d3f5e00b1ea2aeef2a06ace to your computer and use it in GitHub Desktop.
String to Absolute File Path
import java.nio.file.FileSystems;
class ToAbsoluteFilePath {
public static void main(String args[]) {
System.out.println(toAbsolutePath("C:\\"));
}
public static String toAbsolutePath(String path) {
return FileSystems.getDefault().getPath(path).normalize().toAbsolutePath().toString();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment