Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Check if a file or directory has read and write permission

Java Input-Output: Exercise-4 with Solution

Write a Java program to check if a file or directory has read and write permission.

Sample Solution:

Java Code:

import java.io.File;
public class Exercise4 {
       public static void main(String[] args) {
        // Create a File object
        File my_file_dir = new File("/home/students/abc.txt");
         if (my_file_dir.canWrite()) 
           {
            System.out.println(my_file_dir.getAbsolutePath() + " can write.\n");
           } 
         else
          {
            System.out.println(my_file_dir.getAbsolutePath() + " cannot write.\n");
          }
         if (my_file_dir.canRead()) 
           {
            System.out.println(my_file_dir.getAbsolutePath() + " can read.\n");
           } 
         else
          {
            System.out.println(my_file_dir.getAbsolutePath() + " cannot read.\n");
          }  
      }
  }
  

Sample Output:

/home/students/abc.txt can write.                                                                                    
/home/students/abc.txt can read.

Flowchart:

Flowchart: Check if a file or directory has read and write permission

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to check if a file or directory specified by pathname exists or not.
Next: Write a Java program to check if given pathname is a directory or a file.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe