Java - Get specific files by extensions from a specified folder
Java Input-Output: Exercise-2 with Solution
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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/java-exercises/io/java-io-exercise-2.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics