Java File getTotalSpace()方法
java.io.File.getTotalSpace() 方法返回此抽象路径名的分区的大小。
1 语法
public long getTotalSpace()
2 参数
无
3 返回值
该方法返回的分区的大小,以字节为单位。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.File.getTotalSpace()方法的例子
*/
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("test.txt");
// returns size of the partition named
v = f.getTotalSpace();
// true if the file path exists
bool = f.exists();
// if file exists
if (bool) {
// prints
System.out.print("size: " + v);
}
} catch (Exception e) {
// if any error occurs
e.printStackTrace();
}
}
}
输出结果为:
size: 214613073920
热门文章
优秀文章