In Java, you can use the File.length() method to get the file size in bytes and folder.listFiles() method to get all file/folders.
sample code
sample code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package mayan.file_related; | |
import java.io.File; | |
import java.text.DecimalFormat; | |
/** | |
* | |
* @author Uttesh Kumar T.H. | |
*/ | |
public class GetAllFiles { | |
final static String[] units = new String[]{"B", "kB", "MB", "GB", "TB"}; | |
public static void main(String[] args) { | |
String folderPath = "folder path"; | |
final File folder = new File(folderPath); | |
listFiles(folder); | |
} | |
public static void listFiles(final File folder) { | |
for (final File fileEntry : folder.listFiles()) { | |
if (fileEntry.isDirectory()) { | |
listFiles(fileEntry); | |
} else { | |
String size = fileEntry.length() <= 0 ? "0" : fileSize(fileEntry.length()); | |
System.out.println(size); | |
} | |
} | |
} | |
public static String fileSize(long size) { | |
int digitGroups = (int) (Math.log10(size) / Math.log10(1024)); | |
return new DecimalFormat("#,##0.#").format(size / Math.pow(1024, digitGroups)) + " " + units[digitGroups]; | |
} | |
} |
0 comments:
Post a Comment