Sunday, December 7, 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

1 COMMENT

Most Popular

Dominic
32428 POSTS0 COMMENTS
Milvus
103 POSTS0 COMMENTS
Nango Kala
6803 POSTS0 COMMENTS
Nicole Veronica
11945 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12015 POSTS0 COMMENTS
Shaida Kate Naidoo
6934 POSTS0 COMMENTS
Ted Musemwa
7189 POSTS0 COMMENTS
Thapelo Manthata
6883 POSTS0 COMMENTS
Umr Jansen
6867 POSTS0 COMMENTS