I found a link http://docs.oracle.com/javase/tutorial/essential/io/dirs.html with a example:
    Iterable<Path> dirs = FileSystems.getDefault().getRootDirectories();
    for (Path name: dirs) {
        System.err.println(name);
    }
Can you help me figure out what I need to do if I want to list a file from "C://" with the above code?