當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java FileSystem isReadOnly()用法及代碼示例


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()



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 FileSystem isReadOnly() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。