gpt4 book ai didi

java - 如何在Java中获取各种操作系统的当前磁盘容量?

转载 作者:行者123 更新时间:2023-11-30 03:23:47 28 4
gpt4 key购买 nike

我想知道如何使用 Java 获取当前卷?

例如:

C:\D:\ 或在 Unix 上。

最佳答案

使用其中之一:

File currDir = new File(".");

或如 @JigarJoshi 或多或少所述:

File currDir = new File(System.getProperty("user.dir", "."));

未设置该属性时默认为第一个解决方案。

获取根卷:

Path root = currDir.toPath().getRoot();

关于java - 如何在Java中获取各种操作系统的当前磁盘容量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30741852/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com