Afficher l’espace total et libre d’un disque

Author:

 int,string,static, java
{filelink=25}

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");
  }
}

Leave a Reply

Your email address will not be published. Required fields are marked *