Free space on this partition : Partition « File Input Output « Java






Free space on this partition

 
import java.io.File;

public class PartitionSpace {
  public static void main(String[] args) {
    File[] roots = File.listRoots();
    for (int i = 0; i < roots.length; i++) {
      System.out.println("Partition: " + roots[i]);
      System.out.println("Free space on this partition = " + roots[i].getFreeSpace());
    }
  }
}

 








Related examples in the same category

1.Usable space on this partition
2.Total space on this partition