Last Updated : 29 Jul, 2019
isWritable()method of
java.nio.file.Fileshelp us to check whether Java virtual machine has appropriate privileges that would allow it to open this file for writing or not. It means this method test file is writable or not. This method checks that a file exists or not and if file exists then it is writable or not. This method returns true if the file exists and is writable or it would return false if the following cases:
public static boolean isWritable(Path path)Parameters:
This method accepts a parameter
pathwhich is the path to the file to check.
Return value:This method returns true if the file exists and is writable or it would return false if the following cases:
This method will throw
SecurityExceptionin the case of the default provider, and a security manager is installed, the checkWrite is invoked to check write access to the file. Below programs illustrate isWritable(Path) method:
Program 1: Java
// Java program to demonstrate
// Files.isWritable() method
import java.nio.file.*;
public class GFG {
public static void main(String[] args)
{
// create an object of Path
// This file is available on windows and
// It is a Writable file.
Path path
= Paths.get(
"D:\\GIT_EWS_PROJECTS\\logger"
+ "\\src\\logger"
+ "\\GFG.java");
// check whether this file
// is Writable or not
boolean result;
result = Files.isWritable(path);
System.out.println("File " + path
+ " is Writable = "
+ result);
}
}
Output: Program 2: Java
// Java program to demonstrate
// java.nio.file.Files.isWritable() method
import java.nio.file.*;
public class GFG {
public static void main(String[] args)
{
// create an object of Path
// This file is available on windows and
// It is not a Writable file.
Path path
= Paths.get(
"D:\\User Aman\\"
+ "Documents\\MobaXterm\\"
+ "\\ArrayList.docx");
// check whether this file
// is Writable or not
boolean result;
result = Files.isWritable(path);
System.out.println("File " + path
+ " is Writable = "
+ result);
}
}
Output: References: https://docs.oracle.com/javase/10/docs/api/java/nio/file/Files.html#isWritable(java.nio.file.Path)
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