Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Get specific files by extensions from a specified folder

Java Input-Output: Exercise-2 with Solution

Write a Java program to get specific files by 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:

Flowchart: get specific files by extensions from a specified folder

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.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe