Listing the File System Roots - Java File Path IO

Java examples for File Path IO:File System

Description

Listing the File System Roots

Demo Code

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++) {
      // process(roots[i]);
    }/*w  w w . j  ava 2s.  co m*/
  }
}

Related Tutorials