How to search all files inside a directory in Java
Problem Description
How to search all files inside a directory?
Solution
Following example demonstrares how to search and get a list of all files under a specified directory by using dir.list() method of File class.
import java.io.File;
public class Main {
public static void main(String[] argv) throws Exception {
File dir = new File("directoryName");
String[] children = dir.list();
if (children == null) {
System.out.println("does not exist or
is not a directory");
} else {
for (int i = 0; i < children.length; i++) {
String filename = children[i];
System.out.println(filename);
}
}
}
}
Result
The above code sample will produce the following result.
sdk ---vehicles ------body.txt ------color.txt ------engine.txt ---ships ------shipengine.txt
The following is an another sample example of search all files inside a directory in Java
import java.io.File;
import java.io.IOException;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
System.out.println("Enter the path to folder to search for files");
Scanner s1 = new Scanner(System.in);
String folderPath = s1.next();
File folder = new File(folderPath);
if (folder.isDirectory()) {
File[] listOfFiles = folder.listFiles();
if (listOfFiles.length < 1)System.out.println(
"There is no File inside Folder");
else System.out.println("List of Files & Folder");
for (File file : listOfFiles) {
if(!file.isDirectory())System.out.println(
file.getCanonicalPath().toString());
}
}
else System.out .println("There is no Folder @ given path :" + folderPath);
}
}
The above code sample will produce the following result.
Enter the path to folder to search for files C:/ List of Files & Folder C:\bootmgr C:\BOOTNXT C:\hiberfil.sys C:\pagefile.sys C:\recovery.img.img C:\swapfile.sys
java_directories.htm