BTW,

what is the performance of this procedure??


      FileFilter filter=new FileFilter(){
        /**
         * accept
         *
         * @param pathname File
         * @return boolean
         */
        public boolean accept(File file) {
          return file.isDirectory();
        }
      };

      java.io.File folders[] = webFile.listFiles(filter);

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to