首页javadriveJava I/O - 如何创建文件以表示驱动器

Java I/O - 如何创建文件以表示驱动器

我们想知道如何创建文件以表示驱动器。
import java.io.File;

public class Main {

  public static void main(String[] args) {
    File file = new File("C:");
    long totalSpace = file.getTotalSpace();
    System.out.println("Total space on " + file + " = " + totalSpace + "bytes");

    // Check the free space in C:
    long freeSpace = file.getFreeSpace();
    System.out.println("Free space on " + file + " = " + freeSpace + "bytes");
  }
}