Java IO Tutorial - 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 ww. java 2s . co m*/

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.