Home | History | Annotate | Download | only in clearsilver

Lines Matching defs:file

5  * you may not use this file except in compliance with the License.
19 import java.io.File;
74 * Given an ordered list of directories to look in, locate the specified file.
75 * Returns <code>null</code> if file not found.
77 * @param filename the name of the file.
78 * @return a File object corresponding to the file. <code>null</code> if
79 * file not found.
81 public static File locateFile(List<String> loadpaths, String filename) {
89 File file = new File(path, filename);
90 if (file.exists()) {
91 return file;