File getFreeSpace() method in Java with examples Last Updated : 29 Jul, 2019 Comments Improve Suggest changes Like Article Like Report 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 guarantee that the exact number of bytes are free. An error might be caused if an external application writes to the specified file, then the write operation might not succeed. Function signature: public long getFreeSpace() Syntax: long var = file.getFreeSpace(); 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 getFreeSpace() function: Example 1: The file "F:\\program.txt" is a existing file in F: Directory . Java // Java program to demonstrate // getFreeSpace() 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 free size of the partition // using the getFreeSpace() function System.out.println("Free Space: " + f.getFreeSpace()); } } Output: Free Space: 174491860992 Example 2: The file "F:\\program1.txt" does not exist file in F: Directory . Java // Java program to demonstrate // getFreeSpace() 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 free size of the partition // using the getFreeSpace() function System.out.println("Free Space: " + f.getFreeSpace()); } } Output: Free 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 getFreeSpace() method in Java with examples A andrew1234 Follow Improve Article Tags : Java Java-Functions java-file-handling Java-IO package Java-File Class +1 More Practice Tags : Java Similar Reads File getUsableSpace() method in java with examples 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 spac 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 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 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