ListRoots.java Source code

Java tutorial

Introduction

Here is the source code for ListRoots.java

Source

import java.io.File;

public class ListRoots {
    public static void main(String argh_my_aching_fingers[]) {
        File[] drives = File.listRoots(); // Get list of names
        for (int i = 0; i < drives.length; i++)
            System.out.println(drives[i]); // Print the list
    }
}