Browse Source

Suppress exception on temporary file deletion.

pull/187/head
weisj 4 years ago
parent
commit
63c2e13364
  1. 12
      native-utils/src/main/java/com/github/weisj/darklaf/platform/NativeUtil.java

12
native-utils/src/main/java/com/github/weisj/darklaf/platform/NativeUtil.java

@ -93,10 +93,10 @@ public class NativeUtil {
try (InputStream is = NativeUtil.class.getResourceAsStream(path)) {
Files.copy(is, temp, StandardCopyOption.REPLACE_EXISTING);
} catch (IOException e) {
Files.deleteIfExists(temp);
delete(temp);
throw e;
} catch (NullPointerException e) {
Files.deleteIfExists(temp);
delete(temp);
throw new FileNotFoundException("File " + path + " was not found inside JAR.");
}
@ -105,7 +105,7 @@ public class NativeUtil {
} finally {
if (isPosixCompliant()) {
// Assume POSIX compliant file system, can be deleted after loading
Files.deleteIfExists(temp);
delete(temp);
} else {
// Assume non-POSIX, and don't delete until last file descriptor closed
temp.toFile().deleteOnExit();
@ -113,6 +113,12 @@ public class NativeUtil {
}
}
private static void delete(final Path path) {
try {
Files.deleteIfExists(path);
} catch (IOException ignored) {}
}
private static Path createTempDirectory(final String prefix) throws IOException {
return Files.createTempDirectory(prefix + System.nanoTime());
}

Loading…
Cancel
Save