w3resource

Java: Check if a file or directory specified by pathname exists or not


Write a Java program to check if a file or directory specified by pathname exists or not.

Sample Solution:

Java Code:

import java.io.File;
public class Exercise3 {
       public static void main(String[] args) {
        // Create a File object
        File my_file_dir = new File("/home/students/xyz.txt");
         if (my_file_dir.exists()) 
           {
            System.out.println("The directory or file exists.\n");
           } 
         else
          {
            System.out.println("The directory or file does not exist.\n");
          }
       }
  }

Sample Output:

The directory or file does not exist.

Flowchart:

Flowchart: Check if a file or directory specified by pathname exists or not


For more Practice: Solve these Related Problems:

  • Write a Java program to verify the existence of a file or directory using both File and Path classes.
  • Write a Java program to check the existence of multiple file paths provided in a list and report any that are missing.
  • Write a Java program to determine if a given path exists and is accessible, handling permission exceptions gracefully.
  • Write a Java program to validate file existence using Java NIO’s Files.exists() method and compare it with File.exists().

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to get specific files by extensions from a specified folder.
Next: Write a Java program to check if a file or directory has read and write permission.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.