In this section, you will study how to retrieve all the files and folders from the specified directory. In the given example, we are providing the directory 'C:\\" to the constructor of class File.
file.listFiles()- This method returns an array of files and folders present in the specified directory with their pathname.
file.length()- This method returns the length of the provided directory.
files[fileInList]. toString- This will display all the files of directory on the console.
Here is the code of GetFileList.java
import java.io.*;
|
Output will be displayed as:

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Java get File List View All Comments
Post your Comment