Java File getFreeSpace()方法
java.io.File.getFreeSpace() 方法返回此抽象路径名的分区中的未分配的字节数。分配的字节数返回的不是一个保证。未分配的字节数可能是这个调用和不准确的任何外部I/O操作后立即是准确的。
1 语法
public long getFreeSpace()
2 参数
无
3 返回值
这种方法上的分区将返回未分配的字节。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.File.getFreeSpace()方法的例子
*/
import java.io.File;
public class Demo {
public static void main(String[] args) {
File f = null;
long v;
boolean bool = false;
try {
// create new file
f = new File("d:\\test.txt");
// get number of unallocated bytes
v = f.getFreeSpace();
// true if the file path exists
bool = f.exists();
// if file exists
if(bool) {
// prints
System.out.print("number of unallocated bytes: "+v);
}
} catch(Exception e) {
// if any error occurs
e.printStackTrace();
}
}
}
假设test.txt内容如下:
ABCDEFGHIJKLMNOPQRSTUVWXYZ
输出结果为:
number of unallocated bytes: 33613475840
热门文章
优秀文章