Java File.listFiles()

Syntax

File.listFiles() has the following syntax.

public File [] listFiles()

Example

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


import java.io.File;
/*from  ww  w .j a  va2  s .  c om*/
public class Main {
  public static void main(String[] args) {
    // create new file
    File f = new File("c:/test");

    // returns pathnames for files and directory
    File[] paths = f.listFiles();

    // for each pathname in pathname array
    for (File path : paths) {
      System.out.println(path);
    }

  }
}