📜  Java中的 FileSystem isReadOnly() 方法及示例

📅  最后修改于: 2022-05-13 01:54:51.087000             🧑  作者: Mango

Java中的 FileSystem isReadOnly() 方法及示例

FileSystem类的isReadOnly()方法用于检查此文件系统是否只允许对其文件存储进行只读访问。如果文件系统只允许对其文件存储进行读取访问,则此方法将返回 true,否则返回 false。

句法:

public abstract boolean isReadOnly()

参数:此方法不接受任何内容。

返回值:当且仅当此文件系统提供只读访问权限时,此方法才返回true

下面的程序说明了 isReadOnly() 方法:
方案一:

// 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);
    }
}

输出:

方案二:

// 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: Java/nio/file/FileSystem.html#isReadOnly()