In this section, you will learn how to get the size of specified folder.
In the given example, we are going to show you the size of specified folder and also the number of files and folders that are presented in the specified folder. We have create a method getFileSize() in order to obtain the size of folder. The totalFolder++ counts the total folders and totalFile++ counts the total files.
folder.getName()-This method returns the folder name.
folder.listFiles()- This method returns an array of files presented in the specified folder.
filelist[i].length() - This method returns the length of files presented in the specified folder.
Following code will calculate the size of folder in bytes.
| long fileSizeByte=size.getFileSize(new File(folder)) |
Here is the code of GetFolderSize.java
import java.io.File;
|
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 Folder Size View All Comments
Post your Comment