VOOZH about

URL: https://www.geeksforgeeks.org/java/file-getparentfile-method-in-java-with-examples/

⇱ File getParentFile() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

File getParentFile() method in Java with Examples

Last Updated : 11 Jul, 2025
The getParentFile() method is a part of File class. This function returns the Parent file of the given file object. The function returns a File object which contains the Parent file of the given file object. If the abstract path does not contain any Parent file then a null value is returned. Function Signature:
public File getParentFile()
Function Syntax:
file.getParentFile()
Parameters: This function does not accept any parameters. Return value: The function returns File object which is the Parent file of the given File object. Below programs will illustrate the use of the getParentFile() function: Example 1: We are given a file object of a file, we have to get the Parent file of the file object. Output:
File Parent : c:\users
👁 Image
Example 2: We are given a file object of a directory, we have to get the Parent file of the file object.
output:
File Parent : c:\users
👁 Image
The programs might not run in an online IDE. please use an offline IDE and set the Parent file of the file
Comment