getList修正

This commit is contained in:
ろむねこ 2023-12-21 15:06:56 +09:00 committed by r-ca
parent 2f21ecd6bd
commit e925893ad2
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -61,11 +61,9 @@ public class FileManagerImpl implements FileManager {
public List<Path> getList() { public List<Path> getList() {
List<Path> list = new ArrayList<>(); List<Path> list = new ArrayList<>();
try (DirectoryStream<Path> stream = Files.newDirectoryStream(currentDir)) { try (DirectoryStream<Path> stream = Files.newDirectoryStream(currentDir)) {
for (Path entry : stream) { for (Path entry : stream) { // TODO-rca: エラーハンドリング, 効率化
if (Files.isDirectory(entry)) {
list.add(entry); list.add(entry);
} }
}
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); e.printStackTrace();
} }