El método isReadOnly() de una clase FileStore se usa para devolver verdadero si este almacén de archivos es de solo lectura; de lo contrario, es falso. Un almacén de archivos se denomina de solo lectura si no admite operaciones de escritura u otros cambios en los archivos. Se lanzará una IOException si se intenta crear un archivo, abrir un archivo existente para escribir, etc.
Sintaxis:
public abstract String isReadOnly()
Parámetros: Este método no acepta nada.
Valor devuelto: este método devuelve verdadero si, y solo si, este almacén de archivos es de solo lectura.
Los siguientes programas ilustran el método isReadOnly():
Programa 1:
// Java program to demonstrate // FileStore.isReadOnly() method import java.io.IOException; import java.nio.file.FileStore; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; public class GFG { public static void main(String[] args) throws IOException { // create object of Path Path path = Paths.get( "E:\\Tutorials\\file.txt"); // get FileStore object FileStore fs = Files.getFileStore(path); // print FileStore name System.out.println("FileStore Name: " + fs.name()); // is file is readable boolean isReadOnly = fs.isReadOnly(); System.out.println("FileStore isReadOnly:" + isReadOnly); } }
Producción:
Programa 2:
// Java program to demonstrate // FileStore.isReadOnly() method import java.io.IOException; import java.nio.file.FileStore; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; public class GFG { public static void main(String[] args) throws IOException { // create object of Path Path path = Paths.get( "C:\\Movies\\001.txt"); // get FileStore object FileStore fs = Files.getFileStore(path); // print FileStore name System.out.println("FileStore Name: " + fs.name()); // is file is readable boolean isReadOnly = fs.isReadOnly(); System.out.println("FileStore isReadOnly:" + isReadOnly); } }
Producción:
Referencias: https://docs.oracle.com/javase/10/docs/api/java/nio/file/FileStore.html#isReadOnly()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA