Display the List of Drives in the System in java Program

  1. import java.io.*;  
  2.   
  3. public class ListSystemRoots   
  4. {  
  5.     static File giveRoot[];  
  6.   
  7.     public ListSystemRoots(){  
  8.     }  
  9.   public static void main(String args[]){  
  10.     giveRoot = File.listRoots();            // list the names of the drives  
  11.     for (int i = 0; i < giveRoot.length; i++)  
  12.       System.out.println(giveRoot[i]);      // Print the list  
  13.   }