The size of files in Java can be obtained using the File class. The in-built function of ‘fileName.length()’ is used to find size of file in Bytes. The directory may contain ‘N’ number of files, for calculating the size of the directory summation of the size of all the files is required.
length() Method:
length() method in the object of the file class is returning the file size in long(datatype) format. The file size is in a unit of Byte.
Return Type: long
Syntax:
java.io.File file = new java.io.File("file_name.txt");
file.length();
Working:
- If the file exists then the function return the size of the file
- Else the function returns null.
However, the size of the file can be display in Mega, Kilo units using unit conversion.
Java
import java.io.File;
class GFG {
private static long getFolderSize(File folder)
{
long length = 0 ;
File[] files = folder.listFiles();
int count = files.length;
for ( int i = 0 ; i < count; i++) {
if (files[i].isFile()) {
length += files[i].length();
}
else {
length += getFolderSize(files[i]);
}
}
return length;
}
public static void main(String[] args)
{
File file1 = new File( "/home/mayur/Downloads" );
long size = getFolderSize(file1);
System.out.println( "Size of " + file1 + " is "
+ size + " B" );
System.out.println( "Size of " + file1 + " is "
+ ( double )size / 1024 + " KB" );
System.out.println( "Size of " + file1 + " is "
+ ( double )size / ( 1024 * 1024 )
+ " MB" );
}
}
|
Output:

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
27 Apr, 2021
Like Article
Save Article