Java tutorial
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); } } }