Identify temporary files unpacked from classpath jar files.
(File file)
| 1129 | |
| 1130 | /** Identify temporary files unpacked from classpath jar files. */ |
| 1131 | static boolean isUnpacked(File file) { |
| 1132 | return file.getName().startsWith(JNA_TMPLIB_PREFIX); |
| 1133 | } |
| 1134 | |
| 1135 | /** Attempt to extract a native library from the current resource path, |
| 1136 | * using the current thread context class loader. |