Apache Commons IO - FileSystemUtils
FileSystemUtils cung cấp phương pháp lấy dung lượng trống trên ổ đĩa.
Khai báo lớp học
Sau đây là khai báo cho org.apache.commons.io.FileSystemUtils Lớp học -
public class FileSystemUtils
extends Object
Ví dụ về Lớp FileSystemUtils
Dưới đây là ví dụ về Lớp FileSystemUtils -
IOTester.java
import java.io.IOException;
import org.apache.commons.io.FileSystemUtils;
public class IOTester {
public static void main(String[] args) {
try {
System.out.println("Free Space " + FileSystemUtils.freeSpaceKb("C:/") + " Bytes");
} catch(IOException e) {
System.out.println(e.getMessage());
}
}
}
Đầu ra
Dưới đây là kết quả -
Free Space 61355640 kb