Lines Matching full:files
42 * the files listed below, which reside in
44 * The files have the date encoded in the name so that they will sort in
107 * @param dataDir directory to contain the log files.
118 // delete oldest files
191 * Delete oldest files with a given suffix, if more than MAX_FILES.
192 * @param suffix delete oldest files with this suffix.
201 File[] files = (new File(mDatedPath)).getParentFile().listFiles(ff);
202 Arrays.sort(files);
204 for (int i = 0; i < files.length - MAX_FILES; i++) {
205 files[i].delete();