Java Path.toFile()
Syntax
Path.toFile() has the following syntax.
File toFile()
Example
In the following code shows how to use Path.toFile() method.
/*from w w w. j a v a 2 s. com*/
import java.io.File;
import java.nio.file.Path;
import java.nio.file.Paths;
public class Main {
public static void main(String[] args) {
Path path = Paths.get("C:", "tutorial/Java/JavaFX", "Topic.txt");
//convert path to File object
File path_to_file = path.toFile();
System.out.println("Path to file name: " + path_to_file.getName());
}
}
The code above generates the following result.