Traversing a Directory public static void traverse(File f) { process(f); if (f.isDirectory()) { String[] children = f.list(); for (int i=0; i