VOOZH about

URL: https://www.geeksforgeeks.org/java/file-setreadable-function-in-java-with-examples/

⇱ File setReadable() function in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

File setReadable() function in Java with Examples

Last Updated : 11 Jul, 2025
The setReadable() method is a part of File class. The function sets the owner's or everybody's permission to read the abstract pathname. The function is an overloaded function One function requires two parameters and the other only one. Function Signature:
public boolean setReadable(boolean a, boolean b)
public boolean setReadable(boolean a)
Function Syntax:
file.setReadable(boolean a, boolean b)
file.setReadable(boolean a)
Parameters: The function is a overloaded function:
  • For the first overload:
    • If a true value is passed as the first parameter then it is allowed to read the abstract pathname, else it is not allowed to read the file.
    • If a true value is passed as the second parameter then the execution permission applies to the owner only, else it applies to everyone
    For the second overload:
  • If a true value is passed as a parameter then it is allowed to read the abstract pathname, else it is not allowed to read the file.
Return value: This function returns boolean value, whether the operation succeeded or not. Exception: This method throws Security Exception if the function is not allowed write access to the file. Below programs will illustrate the use of the setReadable() function Example 1: We will try to change the setReadable permission of the owner of an existing file in f: directory. Output:
Readable permission is set
Example 2: We will try to change the setReadable permission of every one of an existing file in f: directory.
Output:
Readable permission is set
The programs might not run in an online IDE. please use an offline IDE and set the Parent file of the file
Comment