A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.tutorialspoint.com/java/io/file_setwritable_owner.htm below:

File setWritable(boolean writeable, boolean ownerOnly) method

Java - File setWritable(boolean writeable, boolean ownerOnly) method Description

The Java File setWritable(boolean writeable, boolean ownerOnly) method is used to set or modify the write permission of a file, with an option to restrict it to the owner only.

Declaration

Following is the declaration for java.io.File.setWritable(boolean writeable, boolean ownerOnly) method −

public boolean setWritable(boolean writeable, boolean ownerOnly)
Parameters Return Value

This method returns true if the operation succeeded, else false.

Exception Example - Usage of File setWritable(boolean writeable, boolean ownerOnly) method

The following example shows the usage of Java File setWritable(boolean writeable, boolean ownerOnly) method. We've created a File reference. Then we're creating a File Object using a file path which is present in the given location. Using setWritable() method, we're trying to make the file writeable and getting the result in boolean variable. Then we're printing the status of file as writeable using canWrite() method and result is printed.

FileDemo.java
package com.tutorialspoint;

import java.io.File;

public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      boolean bool = false;      
      try {     
      
         // create new File objects
         f = new File("F:/test.txt");
         
         // set writeable as true for owner
         bool = f.setWritable(true, true);
         
         // prints
         System.out.println("setWritable() succeeded?: "+bool);
         
         // can write
         bool = f.canWrite();
         
         // prints
         System.out.print("Can write?: "+bool);
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}
Output

Let us compile and run the above program, this will produce the following result−

setWritable() succeeded?: true
Can write?: true

Now, you can check that file is renamed.

Example - Usage of File setWritable(boolean writeable, boolean ownerOnly) method

The following example shows the usage of Java File setWritable(boolean writeable, boolean ownerOnly) method. We've created a File reference. Then we're creating a File Object using a file path which is present in the given location and was made writeable in previous example. Using setWritable() method, we're trying to make the file non-writeable and getting the result in boolean variable. Then we're printing the status of file as writeable using canWrite() method and result is printed.

FileDemo.java
package com.tutorialspoint;

import java.io.File;

public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      boolean bool = false;      
      try {     
      
         // create new File objects
         f = new File("F:/test.txt");
         
         // set writeable as true for all
         bool = f.setWritable(true, false);
         
         // prints
         System.out.println("setWritable() succeeded?: "+bool);
         
         // can write
         bool = f.canWrite();
         
         // prints
         System.out.print("Can write?: "+bool);
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}
Output

Let us compile and run the above program, this will produce the following result−

setWritable() succeeded?: true
Can write?: true
Example - Setting Write Permission for Owner Only and All Users

The following example shows the usage of Java File setWritable(boolean writeable, boolean ownerOnly) method.

FileDemo.java
package com.tutorialspoint;

import java.io.File;

public class FileDemo {
   public static void main(String[] args) {
      // Create a File object representing an existing file
      File file = new File("example.txt");

      // Check if the file exists
      if (file.exists()) {
         // Set writable permission for the owner only
         if (file.setWritable(true, true)) {
            System.out.println("File is now writable only by the owner: " + file.getAbsolutePath());
         } else {
            System.out.println("Failed to set write permission for the owner.");
         }

         // Set writable permission for all users
         if (file.setWritable(true, false)) {
            System.out.println("File is now writable by all users.");
         } else {
            System.out.println("Failed to set write permission for all users.");
         }
      } else {
         System.out.println("File does not exist.");
      }
   }
}
Output

Let us compile and run the above program, this will produce the following result−

File is writeable only by the owner: C:\Users\YourName\example.txt
File is now writeable by all users.
Explanation

java_io_file_methods.htm


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4