import java.io.*;
public class EspaceDisk {
public static void main(String[] args) {
File cwd = new File(".");
System.out.println("Espace total: "
+ cwd.getTotalSpace() / (1024 * 1024) + " MBt");
System.out.println("Espace Libre: "
+ cwd.getFreeSpace() / (1024 * 1024) + " MBt");
System.out.println("Espace Utilisé: "
+ cwd.getUsableSpace() / (1024 * 1024) + " MB");
}
}