Saturday, September 6, 2025
HomeLanguagesJavaPath toFile() method in Java with Examples

Path toFile() method in Java with Examples

The toFile() method of java.nio.file.Path interface used to return a java.io.File object representing this path object. if this Path is associated with the default provider, then this method returns a java.io.File object constructed with the String representation of this path. If this path was created by invoking the java.io.File toPath method then there is no guarantee that the File object returned by this method is equal to the original File. This method throws UnsupportedOperationException if this Path is not associated with the default provider.

Syntax:

default File toFile()

Parameters: This method accepts nothing.

Return value: This method returns a java.io.File object representing this path.

Exception: This method throws UnsupportedOperationException if this Path is not associated with the default provider.

Below programs illustrate toFile() method:
Program 1:




// Java program to demonstrate
// java.nio.file.Path.toFile() method
  
import java.io.File;
import java.nio.file.Path;
import java.nio.file.Paths;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create object of Path
        Path path
 = Paths.get("D:\\Apps\\"
                              + "NewTextDocument.txt");
  
        // call toFile() to get
        // File object from path
        File file = path.toFile();
  
        // print file details
        System.out.println("File:" + file.toString()
                           + " is readable "
                           + file.canRead());
    }
}


Output:

Program 2:




// Java program to demonstrate
// java.nio.file.Path.toFile() method
  
import java.io.File;
import java.nio.file.Path;
import java.nio.file.Paths;
public class GFG {
    public static void main(String[] args)
    {
  
        // create object of Path
        Path path = Paths.get("D:\\temp\\"
                              + "AmanSinghCV.docx");
  
        // call toFile() to get
        // File object from path
        File file = path.toFile();
  
        // print file details
        System.out.println("File Name:"
                           + file.getName());
    }
}


Output:

References: https://docs.oracle.com/javase/10/docs/api/java/nio/file/Path.html#toFile()

RELATED ARTICLES

Most Popular

Dominic
32270 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6639 POSTS0 COMMENTS
Nicole Veronica
11803 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11869 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6705 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS