- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for deleteTempDir (0.07 sec)
-
src/main/java/org/codelibs/fess/job/ExecJob.java
/** * Deletes the specified temporary directory. * Logs a warning if the directory cannot be deleted. * * @param ownTmpDir the temporary directory to delete */ protected void deleteTempDir(final File ownTmpDir) { if (ownTmpDir == null) { return; } if (!FileUtils.deleteQuietly(ownTmpDir)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
super.addFessCustomSystemProperties(cmdList, regex); } public void testDeleteTempDir(File ownTmpDir) { super.deleteTempDir(ownTmpDir); } public void testAppendJarFile(String cpSeparator, StringBuilder buf, File libDir, String basePath) { super.appendJarFile(cpSeparator, buf, libDir, basePath); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0)