Java File.list()

Syntax

File.list() has the following syntax.

public String [] list()

Example

In the following code shows how to use File.list() method.


/*from  www  . ja  va2 s.c  om*/
import java.io.File;

public class Main {
  public static void main(String[] args) {

    // create new file
    File f = new File("c:/test");

    // array of files and directory
    String[] paths = f.list();

    // for each name in the path array
    for (String path : paths) {
      System.out.println(path);
    }

  }
}