Java - Get specific files by extensions from a specified folder
Write a Java program to get specific files with extensions from a specified folder.
Sample Solution:
Java Code:
import java.io.File;
import java.io.FilenameFilter;
public class Exercise2 {
public static void main(String a[]){
File file = new File("/home/students/");
String[] list = file.list(new FilenameFilter() {
@Override
public boolean accept(File dir, String name) {
if(name.toLowerCase().endsWith(".py")){
return true;
} else {
return false;
}
}
});
for(String f:list){
System.out.println(f);
}
}
}
Sample Output:
abc.py
Flowchart:
Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Java program to get a list of all file/directory names from the given.
Next: Write a Java program to check if a file or directory specified by pathname exists or not.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics