gpt4 book ai didi

java - 查找目录下的所有路径

转载 作者:行者123 更新时间:2023-12-01 10:51:26 25 4
gpt4 key购买 nike

我需要做的就是扫描一个目录(可能包含子目录)并获取其中包含的所有路径的列表。

编辑:更改整个问题以使其更加具体!

最佳答案

我的尝试是:

    try {
List<Path> pathsInDir = new ArrayList<>();

// Dir to scan
DirectoryStream<Path> newDirectoryStream = Files.newDirectoryStream(Paths.get("."));

for(Path path : newDirectoryStream) {
if(Files.isDirectory(path)) {
pathsInDir.add(path);
// recursive call to scan sub dir
} else {
// handle files.
}
}
} catch (IOException e) {
// TODO please handle the exception.
e.printStackTrace();
}

可以使用java.nio.file.Path的方法来比较目录名称。

关于java - 查找目录下的所有路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33858444/

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