- 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 - IOCase
- Apache Commons IO - LineIterator
- Apache Commons IO - NameFileFilter
- Apache Commons IO - WildcardFileFilter
- Apache Commons IO - SuffixFileFilter
- 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
- LastModifiedFileComparator
- 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
广告