Java tutorial
import java.io.File; public class Main { public static void main(String[] argv) throws Exception { File[] roots = File.listRoots(); for (int i = 0; i < roots.length; i++) { System.out.println(roots[i]); } } }