264265266267268269270271272273274
for (String s : temp) { File file = new File(s); if (!file.exists()) { throw new NoSuchFileException("dir does not exist (:" + property + "): " + s); } folders.add(file); } }
293294295296297298299300301302303
for (String s : temp) { File file = new File(s); if (!file.exists()) { throw new NoSuchFileException("dir does not exist (:" + customFolders.name() + "): " + s); } folders.add(file); } }
248249250251252253254255256257258
277278279280281282283284285286287