如何在Java中检索文件夹或文件的大小?
StatFs
。它使用文件系统统计信息,比递归方法快1000倍,而递归方法无法满足我们的需求。我们的实现可以在这里找到:stackoverflow.com/a/58418639/293280
如何在Java中检索文件夹或文件的大小?
StatFs
。它使用文件系统统计信息,比递归方法快1000倍,而递归方法无法满足我们的需求。我们的实现可以在这里找到:stackoverflow.com/a/58418639/293280
Answers:
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
。另外,它不考虑符号链接,并且可能具有其他故障模式。使用此方法。
NullPointerException
如果同时修改目录,则可能会引发。
使用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();
}
AtomicLong
而不是仅仅使用的理由long
吗?
Files
不直接支持它!
你需要FileUtils#sizeOfDirectory(File)
从公共-io的。
请注意,您将需要手动检查文件是否为目录,因为如果将非目录传递给该方法,则该方法将引发异常。
警告:此方法(从commons-io 2.4开始)存在一个错误,IllegalArgumentException
如果同时修改目录,则可能会抛出该错误。
checkDirectory(directory);
检查后复制并粘贴行。只要确保File.listFiles
有孩子。参考: FileUtils.sizeOfDirectory(),
IllegalArgumentException
如果在迭代过程中修改了目录,则此方法将引发。
在Java 8中:
long size = Files.walk(path).mapToLong( p -> p.toFile().length() ).sum();
Files::size
在map步骤中使用会更好,但是会抛出一个已检查的异常。
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;
}
size += getFolderSize(file);
这是获取常规文件大小的最佳方法(适用于目录和非目录):
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)是一种从长返回中获取用户可读字符串的好方法:
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];
}
如果要使用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
。
源代码:
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());
}
对于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;
}
这已经过测试,并且可以正常工作。
我已经测试过,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;
}
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;
}
经过大量研究并研究了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;
}
您可以使用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);
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;
}