Apache Commons IO-FileSystemUtils
FileSystemUtils는 디스크 드라이브의 여유 공간을 확보하는 방법을 제공합니다.
클래스 선언
다음은에 대한 선언입니다. org.apache.commons.io.FileSystemUtils 클래스-
public class FileSystemUtils
extends Object
FileSystemUtils 클래스의 예
다음은 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());
}
}
}
산출
다음은 출력입니다.
Free Space 61355640 kb