- Apache Commons IO 教程
- Apache Commons IO - 主页
- Apache Commons IO - 概述
- Apache Commons IO - 环境设置
- Apache Commons IO - IOUtils
- Apache Commons IO - FileUtils
- Apache Commons IO - FilenameUtils
- Apache Commons IO - FileSystemUtils
- Apache Commons IO - IO案例
- Apache Commons IO - LineIterator
- Apache Commons IO - NameFileFilter
- Apache Commons IO - WildcardFileFilter
- Apache Commons IO - 后缀文件过滤器
- Apache Commons IO - PrefixFileFilter
- Apache Commons IO - OrFileFilter
- Apache Commons IO - AndFileFilter
- Apache Commons IO - FileEntry
- Apache Commons IO - FileAlterationObserver
- Apache Commons IO - FileAlterationMonitor
- Apache Commons IO - NameFileComparator
- Apache Commons IO - SizeFileComparator
- 最后修改文件比较器
- Apache Commons IO - TeeInputStream
- Apache Commons IO - TeeOutputStream
- Apache Commons IO - 有用资源
- Apache Commons IO - 快速指南
- Apache Commons IO - 有用资源
- Apache Commons IO - 讨论
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