El método type() de una clase FileStore se usa para devolver el tipo de este almacén de archivos y el formato de la string devuelta altamente específica de la implementación.
Sintaxis:
public abstract String type()
Parámetros: Este método no acepta nada.
Valor devuelto: este método devuelve una string que representa el tipo de este almacén de archivos.
Los siguientes programas ilustran el método type():
Programa 1:
Java
// Java program to demonstrate // FileStore.type() 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) { // create object of Path Path path = Paths.get("E:\\Tutorials\\file.txt"); // get FileStore object try { FileStore fs = Files.getFileStore(path); // print FileStore name // and Total usable space System.out.println("FileStore Name: " + fs.name()); String type = fs.type(); System.out.println("Type: " + type); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
Producción:
Programa 2:
Java
// Java program to demonstrate // FileStore.type() 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) { // create object of Path // create object of Path Path path = Paths.get("C:\\Movies\\document.txt"); // get FileStore object try { FileStore fs = Files.getFileStore(path); // print FileStore name // and Total usable space System.out.println("FileStore Name: " + fs.name()); String type = fs.type(); System.out.println("Type: " + type); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
Producción:
Referencias: https://docs.oracle.com/javase/10/docs/api/java/nio/file/FileStore.html#type()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA