50,000個のパスのリストがあり、これらの各パスに対してファイルが存在するかどうかを確認する必要があります。現在、次のように各パスを個別に検証しています。
public static List<String> filesExist(String baseDirectory, Iterable<String> paths) throws FileNotFoundException{
File directory = new File(baseDirectory);
if(!directory.exists()){
throw new FileNotFoundException("No Directory found: " + baseDirectory );
}else{
if(!directory.isDirectory())
throw new FileNotFoundException(baseDirectory + " is not a directory!");
}
List<String> filesNotFound = new ArrayList<String>();
for (String path : paths) {
if(!new File(baseDirectory + path).isFile())
filesNotFound.add(path);
}
return filesNotFound;
}
50,000個のファイルオブジェクトを作成しないように改善する方法はありますか?私もグアバを使っています。exists()
バルク方式で役立つユーティリティはありますか?