码迷,mamicode.com
首页 > 其他好文 > 详细

一键填满所有磁盘空间

时间:2016-01-22 17:05:57      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

  实在太无聊了. 就.....

import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;

public class Test {
    public static void main(String[] args) throws IOException {
        File[] file1 = File.listRoots();
        for (int k = 0; k < file1.length; k++) {
            String path = file1[k].getAbsolutePath();
            path = path.substring(0, path.length() - 1);
            File file = new File(path + "/文件我最大/");
            if (!file.isDirectory()) {
                file.mkdir();
            }
            for (int i = 0; i < 10000; i++) {
                File file3 = new File(path + "/文件我最大/" + i);
                if (!file3.exists()) {
                    file3.createNewFile();
                    RandomAccessFile rac = new RandomAccessFile(file3, "rw");
                    try {
                        rac.setLength(1073741824);
                    } catch (Exception e) {
                        break;
                    }
                    rac.close();
                }
            }
        }
    }
}

 

一键填满所有磁盘空间

标签:

原文地址:http://www.cnblogs.com/wuqinglong/p/5151419.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!