- Sort Score
- Result 10 results
- Languages All
Results 11 - 13 of 13 for deleteIfExists (1.63 sec)
-
docs/smb3-features/02-persistent-handles-design.md
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/FileUtil.java
*/ public static void deleteInBackground(final File file) { if (file != null) { TimeoutManager.getInstance().addTimeoutTarget(() -> { try { Files.deleteIfExists(file.toPath()); } catch (final IOException e) { throw new IORuntimeException(e); } }, 0, false); } }Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 13.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
if (!(Files.isRegularFile(target) && Files.isSameFile(source, target))) { Files.createDirectories(target.getParent()); try { Files.deleteIfExists(target); Files.createLink(target, source); } catch (UnsupportedOperationException | IOException suppressed) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Dec 15 11:20:38 UTC 2025 - 24.4K bytes - Viewed (0)