157158159160161162163164165166167
File f = new File(path); if(!f.exists()) throw new ResourceNotFound(); if(!f.isDirectory()) throw new NotDirectory(); String[] lf = f.list(); String[] list = null; if(lf!=null)
27552756275727582759276027612762
for (final String path : paths) { final File file = new File(path); if (!file.isDirectory()) throw new NotDirectory(path, cv.getVar(), cv.getSource(), cv.getLine()); } }
27582759276027612762276327642765