Q:

Java program to check whether a file can be read or not

belongs to collection: Java File Handling Programs

0

Given a file, and we have to check whether file can be read or not using Java program.

In this program, there is a file named "C.txt" which is saved in "E:\" drive in my system, so that path is "E:/C.txt".

To check that file can be read or not, there is a method canRead() of "File" class, it returns 'true' if file can be read or returns 'false' if file cannot be read.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program to check, file can be read or not in Java

import java.io.*;

public class DetermineFileCanBeRead {
  public static void main(String[] args) {
    String filePath = "E:/C.txt";
    File file = new File(filePath);

    if (file.canRead()) {
      System.out.println("File " + file.getPath() + " can be read");
    } else {
      System.out.println("File " + file.getPath() + " can not be read");
    }
  }
}

Output

File E:\A.txt can be read

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java File Handling Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to read and print all files from a zi... >>
<< Java program to create directory/folder in particu...