如何在Java中检索文件夹或文件的大小?
答案 0 :(得分:173)
java.io.File file = new java.io.File("myfile.txt");
file.length();
如果文件不存在,则返回文件的长度(以字节为单位)或0
。没有内置的方法来获取文件夹的大小,您将不得不递归地遍历目录树(使用表示目录的文件对象的listFiles()
方法)并累积目录大小自己:
public static long folderSize(File directory) {
long length = 0;
for (File file : directory.listFiles()) {
if (file.isFile())
length += file.length();
else
length += folderSize(file);
}
return length;
}
警告:此方法对于生产用途而言不够强大。 directory.listFiles()
可能会返回null
并导致NullPointerException
。此外,它不考虑符号链接,可能还有其他失败模式。使用this method。
答案 1 :(得分:36)
使用java-7 nio api,可以更快地计算文件夹大小。
这是一个准备好运行的示例,它是健壮的,不会引发异常。它将记录它无法输入或无法遍历的目录。符号链接被忽略,并且目录的并发修改不会造成比必要更多的麻烦。
/**
* Attempts to calculate the size of a file or directory.
*
* <p>
* Since the operation is non-atomic, the returned value may be inaccurate.
* However, this method is quick and does its best.
*/
public static long size(Path path) {
final AtomicLong size = new AtomicLong(0);
try {
Files.walkFileTree(path, new SimpleFileVisitor<Path>() {
@Override
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) {
size.addAndGet(attrs.size());
return FileVisitResult.CONTINUE;
}
@Override
public FileVisitResult visitFileFailed(Path file, IOException exc) {
System.out.println("skipped: " + file + " (" + exc + ")");
// Skip folders that can't be traversed
return FileVisitResult.CONTINUE;
}
@Override
public FileVisitResult postVisitDirectory(Path dir, IOException exc) {
if (exc != null)
System.out.println("had trouble traversing: " + dir + " (" + exc + ")");
// Ignore errors traversing a folder
return FileVisitResult.CONTINUE;
}
});
} catch (IOException e) {
throw new AssertionError("walkFileTree will not throw IOException if the FileVisitor does not");
}
return size.get();
}
答案 2 :(得分:34)
您需要FileUtils#sizeOfDirectory(File)
中的commons-io。
请注意,您需要手动检查文件是否是目录,因为如果向其传递非目录,则该方法会抛出异常。
警告:此方法(从commons-io 2.4开始)有一个错误,如果同时修改目录,可能会抛出IllegalArgumentException
。
答案 3 :(得分:16)
在Java 8中:
long size = Files.walk(path).mapToLong( p -> p.toFile().length() ).sum();
在地图步骤中使用Files::size
会更好,但会抛出已检查的异常。
更新:
您还应该知道,如果某些文件/文件夹不可访问,则会抛出异常。请参阅此question以及使用Guava的其他解决方案。
答案 4 :(得分:10)
public static long getFolderSize(File dir) {
long size = 0;
for (File file : dir.listFiles()) {
if (file.isFile()) {
System.out.println(file.getName() + " " + file.length());
size += file.length();
}
else
size += getFolderSize(file);
}
return size;
}
答案 5 :(得分:4)
如果您想使用 Java 8 NIO API,以下程序将打印其所在目录的大小(以字节为单位)。
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
public class PathSize {
public static void main(String[] args) {
Path path = Paths.get(".");
long size = calculateSize(path);
System.out.println(size);
}
/**
* Returns the size, in bytes, of the specified <tt>path</tt>. If the given
* path is a regular file, trivially its size is returned. Else the path is
* a directory and its contents are recursively explored, returning the
* total sum of all files within the directory.
* <p>
* If an I/O exception occurs, it is suppressed within this method and
* <tt>0</tt> is returned as the size of the specified <tt>path</tt>.
*
* @param path path whose size is to be returned
* @return size of the specified path
*/
public static long calculateSize(Path path) {
try {
if (Files.isRegularFile(path)) {
return Files.size(path);
}
return Files.list(path).mapToLong(PathSize::calculateSize).sum();
} catch (IOException e) {
return 0L;
}
}
}
calculateSize
方法对Path
个对象是通用的,因此它也适用于文件。
注意如果文件或目录不可访问,在这种情况下,路径对象的返回大小将为0
。
答案 6 :(得分:3)
File
对象有一个length
方法:
f = new File("your/file/name");
f.length();
答案 7 :(得分:3)
这是获取常规文件大小的最佳方法(适用于目录和非目录):
public static long getSize(File file) {
long size;
if (file.isDirectory()) {
size = 0;
for (File child : file.listFiles()) {
size += getSize(child);
}
} else {
size = file.length();
}
return size;
}
编辑:请注意,这可能是一项耗时的操作。不要在UI线程上运行它。
此外,这里(取自https://stackoverflow.com/a/5599842/1696171)是从返回的long获取用户可读字符串的好方法:
public static String getReadableSize(long size) {
if(size <= 0) return "0";
final String[] units = new String[] { "B", "KB", "MB", "GB", "TB" };
int digitGroups = (int) (Math.log10(size)/Math.log10(1024));
return new DecimalFormat("#,##0.#").format(size/Math.pow(1024, digitGroups))
+ " " + units[digitGroups];
}
答案 8 :(得分:3)
File.length()
(Javadoc)。
请注意,这不适用于目录,也不保证无法正常工作。
对于目录,您想要什么?如果它是下面所有文件的总大小,您可以使用File.list()
和File.isDirectory()
递归地走路,并将它们的大小相加。
答案 9 :(得分:3)
源代码:
public long fileSize(File root) {
if(root == null){
return 0;
}
if(root.isFile()){
return root.length();
}
try {
if(isSymlink(root)){
return 0;
}
} catch (IOException e) {
e.printStackTrace();
return 0;
}
long length = 0;
File[] files = root.listFiles();
if(files == null){
return 0;
}
for (File file : files) {
length += fileSize(file);
}
return length;
}
private static boolean isSymlink(File file) throws IOException {
File canon;
if (file.getParent() == null) {
canon = file;
} else {
File canonDir = file.getParentFile().getCanonicalFile();
canon = new File(canonDir, file.getName());
}
return !canon.getCanonicalFile().equals(canon.getAbsoluteFile());
}
答案 10 :(得分:3)
对于 Java 8 ,这是一种正确的方法:
Files.walk(new File("D:/temp").toPath())
.map(f -> f.toFile())
.filter(f -> f.isFile())
.mapToLong(f -> f.length()).sum()
过滤掉所有目录非常重要,因为目录的长度方法不能保证为0。
至少此代码提供与Windows资源管理器本身相同的大小信息。
答案 11 :(得分:1)
我已经测试过du -c <folderpath>
,它比nio快2倍。文件或递归
private static long getFolderSize(File folder){
if (folder != null && folder.exists() && folder.canRead()){
try {
Process p = new ProcessBuilder("du","-c",folder.getAbsolutePath()).start();
BufferedReader r = new BufferedReader(new InputStreamReader(p.getInputStream()));
String total = "";
for (String line; null != (line = r.readLine());)
total = line;
r.close();
p.waitFor();
if (total.length() > 0 && total.endsWith("total"))
return Long.parseLong(total.split("\\s+")[0]) * 1024;
} catch (Exception ex) {
ex.printStackTrace();
}
}
return -1;
}
答案 12 :(得分:0)
如果你想对目录进行排序,那么du -hs * |排序-h
答案 13 :(得分:0)
经过大量研究并研究StackOverflow提出的不同解决方案。我终于决定编写自己的解决方案了。我的目的是拥有无抛出机制,因为如果API无法获取文件夹大小,我不想崩溃。 此方法不适用于多线程方案。
首先,我想在遍历文件系统树时检查有效目录。
private static boolean isValidDir(File dir){
if (dir != null && dir.exists() && dir.isDirectory()){
return true;
}else{
return false;
}
}
其次我不希望我的递归调用进入符号链接(软链接)并包括总聚合中的大小。
public static boolean isSymlink(File file) throws IOException {
File canon;
if (file.getParent() == null) {
canon = file;
} else {
canon = new File(file.getParentFile().getCanonicalFile(),
file.getName());
}
return !canon.getCanonicalFile().equals(canon.getAbsoluteFile());
}
最后我的基于递归的实现来获取指定目录的大小。注意dir.listFiles()的空检查。根据javadoc,这个方法有可能返回null。
public static long getDirSize(File dir){
if (!isValidDir(dir))
return 0L;
File[] files = dir.listFiles();
//Guard for null pointer exception on files
if (files == null){
return 0L;
}else{
long size = 0L;
for(File file : files){
if (file.isFile()){
size += file.length();
}else{
try{
if (!isSymlink(file)) size += getDirSize(file);
}catch (IOException ioe){
//digest exception
}
}
}
return size;
}
}
一些奶油蛋糕,用于获取列表文件大小的API(可能是根目录下的所有文件和文件夹)。
public static long getDirSize(List<File> files){
long size = 0L;
for(File file : files){
if (file.isDirectory()){
size += getDirSize(file);
} else {
size += file.length();
}
}
return size;
}
答案 14 :(得分:0)
对于Windows,使用java.io可以使用此递归函数。
public static long folderSize(File directory) {
long length = 0;
if (directory.isFile())
length += directory.length();
else{
for (File file : directory.listFiles()) {
if (file.isFile())
length += file.length();
else
length += folderSize(file);
}
}
return length;
}
这已经过测试并且可以正常工作。
答案 15 :(得分:0)
您可以使用Apache Commons IO
轻松找到文件夹的大小。
如果您正在使用Maven,请在您的pom.xml
文件中添加以下依赖项。
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
如果不喜欢Maven,请下载以下jar,并将其添加到类路径中。
https://repo1.maven.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar
public long getFolderSize() {
File folder = new File("src/test/resources");
long size = FileUtils.sizeOfDirectory(folder);
return size; // in bytes
}
要通过Commons IO获取文件大小,
File file = new File("ADD YOUR PATH TO FILE");
long fileSize = FileUtils.sizeOf(file);
System.out.println(fileSize); // bytes
也可以通过Google Guava
对于Maven,添加以下内容:
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>28.1-jre</version>
</dependency>
如果不使用Maven,请将以下内容添加到类路径中
https://repo1.maven.org/maven2/com/google/guava/guava/28.1-jre/guava-28.1-jre.jar
public long getFolderSizeViaGuava() {
File folder = new File("src/test/resources");
Iterable<File> files = Files.fileTreeTraverser()
.breadthFirstTraversal(folder);
long size = StreamSupport.stream(files.spliterator(), false)
.filter(f -> f.isFile())
.mapToLong(File::length).sum();
return size;
}
要获取文件大小,
File file = new File("PATH TO YOUR FILE");
long s = file.length();
System.out.println(s);
答案 16 :(得分:0)
private static long getFolderSize(Path folder) {
try {
return Files.walk(folder)
.filter(p -> p.toFile().isFile())
.mapToLong(p -> p.toFile().length())
.sum();
} catch (IOException e) {
e.printStackTrace();
return 0L;
}
答案 17 :(得分:0)
public long folderSize (String directory)
{
File curDir = new File(directory);
long length = 0;
for(File f : curDir.listFiles())
{
if(f.isDirectory())
{
for ( File child : f.listFiles())
{
length = length + child.length();
}
System.out.println("Directory: " + f.getName() + " " + length + "kb");
}
else
{
length = f.length();
System.out.println("File: " + f.getName() + " " + length + "kb");
}
length = 0;
}
return length;
}