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.
Java get File List
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: