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)