El método getUsableSpace() de una clase FileStore se usa para devolver la cantidad de bytes disponibles para esta máquina virtual Java en el almacén de archivos. Este método es útil para comprobar el espacio libre. Este método devuelve el espacio utilizable disponible como un valor largo.
Sintaxis:
public abstract long getUsableSpace() throws IOException
Parámetros: Este método no acepta nada.
Valor devuelto: este método devuelve el espacio utilizable disponible como un valor largo.
Excepción: este método lanza IOException si ocurre un error de E/S.
Los siguientes programas ilustran el método getUsableSpace():
Programa 1:
// Java program to demonstrate // FileStore.getUsableSpace() 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 the 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()); long bytes = fs.getUsableSpace(); long sizeInGB = bytes / (1024 * 1024); System.out.println("Usable Space: " + sizeInGB + " MB"); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
Producción:
Programa 2:
// Java program to demonstrate // FileStore.getUsableSpace() 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 the object of Path Path path = Paths.get( "C:\\Movies\\001.txt"); // get FileStore object try { FileStore fs = Files.getFileStore(path); // print FileStore name and Total usable space System.out.println("FileStore Name: " + fs.name()); long bytes = fs.getUsableSpace(); long sizeInGB = bytes / (1024); System.out.println("Usable Space: " + sizeInGB + " KB"); } 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#getUsableSpace()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA