File.list() has the following syntax.
public String [] list()
In the following code shows how to use File.list() method.
//from w w w.java 2 s. co m 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); } } }
The code above generates the following result.