Lines Matching refs:file
4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
63 File file = new File(root, ze.getName());
65 file.mkdirs();
72 out = new FileOutputStream(file);
150 File file = File.createTempFile(prefix, "opengrok");
151 if (!file.delete()) {
153 "Could not create delete temporary file " + file);
155 if (!file.mkdir()) {
157 "Could not create temporary directory " + file);
159 return file;
182 File file = new File(dir, progName);
183 if (file.isFile() && file.canExecute()) {
184 absoluteFile = file;