File

Get free disk space in Java example

With this tutorial we are going to see how to use the File class in order to get the size of certain disk partitions in your file system.

You can use:

  • getTotalSpace() to get the total capacity of the disk partition you want.
  • getFreeSpace() to get the free space of the disk partition.
  • getUsableSpace() to get the usable space in the disk partition.

Let’s take a look at the code:
 
 

package com.javacodegeeks.java.core;

import java.io.File;

public class DiskSpaceDetail {

	public static void main(String[] args) {

		File diskPartition = new File("C:");

		long totalCapacity = diskPartition.getTotalSpace(); 

		long freePartitionSpace = diskPartition.getFreeSpace(); 
		long usablePatitionSpace = diskPartition.getUsableSpace(); 

		System.out.println("**** Sizes in Mega Bytes ****\n");

		System.out.println("Total C partition size : " + totalCapacity / (1024*1024) + " MB");
		System.out.println("Usable Space : " + usablePatitionSpace / (1024 *1024) + " MB");
		System.out.println("Free Space : " + freePartitionSpace / (1024 *1024) + " MB");

		System.out.println("\n**** Sizes in Giga Bytes ****\n");

		System.out.println("Total C partition size : " + totalCapacity / (1024*1024*1024) + " GB");
		System.out.println("Usable Space : " + usablePatitionSpace / (1024 *1024*1024) + " GB");
		System.out.println("Free Space : " + freePartitionSpace / (1024 *1024*1024) + " GB");
	}
}

Output:

**** Sizes in Mega Bytes ****

Total C partition size : 610376 MB
Usable Space : 107098 MB
Free Space : 107098 MB

**** Sizes in Giga Bytes ****

Total C partition size : 596 GB
Usable Space : 104 GB
Free Space : 104 GB

 
This was an example on how to find out the disk space in Java.

Byron Kiourtzoglou

Byron is a master software engineer working in the IT and Telecom domains. He is an applications developer in a wide variety of applications/services. He is currently acting as the team leader and technical architect for a proprietary service creation and integration platform for both the IT and Telecom industries in addition to a in-house big data real-time analytics solution. He is always fascinated by SOA, middleware services and mobile development. Byron is co-founder and Executive Editor at Java Code Geeks.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
John
John
6 years ago

If the CMD prompt is open in administrator privilege. It does not show network drives.

Back to top button