File getUsableSpace() method in java with examples Last Updated : 29 Jul, 2019 Comments Improve Suggest changes Like Article Like Report The getUsableSpace() function is a part of File class in Java . This function returns the unallocated size of the partition denoted by the abstract pathname, if the pathname does not exist then it returns 0L. This function is more accurate than the getFreeSpace() function as it returns the free space allocated to this virtual machine. This function gives a hint of the unallocated space of the partition but does not give any guarantee that the exact number of bytes is Usable. An error might be caused if an external application writes to the specified file, then the write operation might not succeed. If there is no clear distinction it will return the same value as getFreeSapce() method. Function signature: public long getUsableSpace() Syntax: long var = file.getUsableSpace(); Parameters: This method does not accept any parameter. Return Value: The function returns long data type represents unallocated size of the partition in bytes Exception: This method throws SecurityException if the method does not allow file to be created Below programs illustrates the use of getUsableSpace() function: Example 1: The file "F:\\program.txt" is a existing file in F: Directory . Java // Java program to demonstrate // getUsableSpace() method of File Class import java.io.*; public class solution { public static void main(String args[]) { // Create an abstract pathname (File object) File f = new File("F:\\program.txt"); // Display the Usable size of the partition // using the getUsableSpace() function System.out.println("Usable Space: " + f.getUsableSpace()); } } Output: Usable Space: 174491860992 Example 2: The file "F:\\program1.txt" does not exist file in F: Directory . Java // Java program to demonstrate // getUsableSpace() method of File Class import java.io.*; public class solution { public static void main(String args[]) { // Create an abstract pathname (File object) File f = new File("F:\\program1.txt"); // Display the Usable size of the partition // using the getUsableSpace() function System.out.println("Usable Space: " + f.getUsableSpace()); } } Output: Usable Space: 0 Note: The programs might not run in an online IDE. Please use an offline IDE and set the path of the file. Comment More infoAdvertise with us Next Article File getUsableSpace() method in java with examples andrew1234 Follow Improve Article Tags : Java Java-Functions Java-IO package Java-File Class Practice Tags : Java Similar Reads FileStore getUsableSpace() method in Java with Examples The getUsableSpace() method of a FileStore class is used to return the number of bytes available to this Java virtual machine on the file store. This method is useful to check free space. This method returns the available usable space as a long value. Syntax: public abstract long getUsableSpace() th 2 min read File getTotalSpace() method in Java with examples The getTotalSpace() function is a part of File class in Java . This function returns the total size of the partition denoted by the abstract pathname, if the pathname does not exist then it returns 0L. Function signature: public long getTotalSpace() Syntax: long var = file.getTotalSpace(); Parameter 2 min read File getFreeSpace() method in Java with examples The getFreeSpace() function is a part of File class in Java. This function returns the unallocated size of the partition denoted by the abstract pathname, if the pathname does not exist then it returns 0L. This function gives a hint of the unallocated space of the partition but does not give any gua 2 min read FileStore getTotalSpace() method in Java with Examples The getTotalSpace() method of a FileStore class is used to return total size of the file store, in bytes. This method returns this total size as a long value. Syntax: public abstract long getTotalSpace() throws IOException Parameters: This method accepts nothing. Return value: This method returns th 2 min read FileStore getUnallocatedSpace() method in Java with Examples The getUnallocatedSpace() method of a FileStore class is used to get the number of unallocated bytes in the file store. This method is useful to check free space. This method returns the available unallocated space as a long value.Syntax: public abstract long getUnallocatedSpace() throws IOException 2 min read Like