FileSystem类的isReadOnly()方法用于检查此文件系统是否仅允许对其文件存储区进行只读访问。如果文件系统仅允许对其文件存储进行读取访问,则此方法将返回true,否则返回false。
用法:
public abstract boolean isReadOnly()
参数:此方法不接受任何内容。
返回值:仅当此文件系统提供只读访问权限时,此方法才返回true。
以下示例程序旨在说明isReadOnly()方法:
示例1:
// Java program to demonstrate
// FileSystem.isReadOnly() method
import java.nio.file.FileSystem;
import java.nio.file.Path;
import java.nio.file.Paths;
public class GFG {
public static void main(String[] args)
{
// create object of Path
Path path
= Paths.get(
"C:\\Movies\\document.txt");
// get FileSystem object
FileSystem fs = path.getFileSystem();
// apply isReadOnly() methods
boolean answer = fs.isReadOnly();
// print
System.out.println("isReadOnly: "
+ answer);
}
}
输出:
示例2:
// Java program to demonstrate
// FileSystem.isReadOnly() method
import java.nio.file.FileSystem;
import java.nio.file.Path;
import java.nio.file.Paths;
public class GFG {
public static void main(String[] args)
{
// create object of Path
Path path
= Paths.get(
"E:// Tutorials// file.txt");
// get FileSystem object
FileSystem fs = path.getFileSystem();
// apply isReadOnly() methods
boolean answer = fs.isReadOnly();
// print
System.out.println(fs + "is ReadOnly = "
+ answer);
}
}
输出:
参考:https://docs.oracle.com/javase/10/docs/api/java/nio/file/FileSystem.html#isReadOnly()
相关用法
- Java FileStore isReadOnly()用法及代码示例
- Java FileSystem isOpen()用法及代码示例
- Java FileSystem getSeparator()用法及代码示例
- Java FileSystem getFileStores()用法及代码示例
- Java FileSystem getRootDirectories()用法及代码示例
- Java Buffer isReadOnly()用法及代码示例
- Java Java lang.Long.builtcount()用法及代码示例
- Java Java.util.Collections.rotate()用法及代码示例
- Java Java lang.Long.highestOneBit()用法及代码示例
- Java Java lang.Long.byteValue()用法及代码示例
- Java Java.util.Collections.disjoint()用法及代码示例
- Java Java lang.Long.numberOfLeadingZeros()用法及代码示例
- Java Java lang.Long.numberOfTrailingZeros()用法及代码示例
- Java Java lang.Long.lowestOneBit()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 FileSystem isReadOnly() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。