java统计磁盘文件和文件夹大小

因为公司配置的SSD非常小(仅100G),经常出现磁盘不够用的情况,所以每次都得手动清理垃圾文件。

清理倒好,主要是找大的垃圾文件麻烦,清理少了又不够用。

so 现在写了个java程序,查看磁盘文件大小,并且按从大到小的顺序列出来。

源码如下:

package com.raycloud.test.tools;

import java.io.File;
import java.util.*;

/**
 *
 * 统计磁盘中文件的大小,并按从大到小排序
 * @Author : [email protected]
 * @Date : 2015/4/15 17:08
 * @From : raytest
 */
public class StatsFileSize {

    static long unitGB = 1024*1024*1024;
    static long unitMB = 1024*1024;
    static long unitKB = 1024;

    public static void main(String[] args) {


        File rootFile = new File("d:\\");
File files [] =rootFile.listFiles();
Map<String,Long> map= new HashMap<String, Long>();
        for(File file : files){
            long len = 0;
            if(file.isDirectory()){
                len = getDirFileLen(file.getPath());
}else{
                len = file.length();
}
            map.put(file.getName(), len);
}

        //排序
Set<Map.Entry<String,Long>> entrySet = map.entrySet();
List<Map.Entry<String,Long>> list = new ArrayList<Map.Entry<String, Long>>();
        for(Map.Entry<String,Long> entry : entrySet){
            list.add(entry);
}
        Collections.sort(list, new Comparator<Map.Entry<String, Long>>() {
            @Override public int compare(Map.Entry<String, Long> o1, Map.Entry<String, Long> o2) {
                return o2.getValue().compareTo(o1.getValue());
}
        });

        for(Map.Entry<String,Long> entry : list){
            //len trans for hman
long len = entry.getValue();
String strLen = "";
            if(len > unitGB){
                strLen = len / unitGB +"GB";
}else if(len > unitMB){
                strLen = len / unitMB +"MB";
}else if(len > unitKB){
                strLen = len / unitKB +"KB";
}else{
                strLen = len +"B";
}
            System.out.println(entry.getKey()+"  "+strLen);
}

    }

    /**
     * 获得文件夹长度
     * @param filePath
* @return
     */
public static long getDirFileLen(String filePath){
        File rootFile = new File(filePath);
        long resultLen = 0;
File files [] =rootFile.listFiles();
        if(files == null){
            return resultLen;
}
        for(File file : files){
            if(!file.isDirectory()){  //dir
resultLen += file.length();
}else{  //file
resultLen+=getDirFileLen(file.getPath());
}
        }
        return resultLen;
}
}

猜你喜欢

转载自tss0823.iteye.com/blog/2202905