List all drives and their space info in your computer
Posted by
neo
on Monday, June 15, 2009
design by Free CSS Templates, blogger design by TeknoMobi
import
java.io.File;
public class SpaceChecker {
public static void main(String[] args) {
File[] roots = File.listRoots();
for (int i = 0; i <>) {
System.out.println(roots[i]);
System.out.println(
"Free space = " + roots[i].getFreeSpace());
System.out.println(
"Usable space = " + roots[i].getUsableSpace());
System.out.println(
"Total space = " + roots[i].getTotalSpace());
System.out.println();
}
}
}
Copyright (c) 2009 All About Java. All rights reserved. Design by Free CSS Templates Blogspot Templates Created by TeknoMobi.
0 comments:
Post a Comment