Returns the file on disk corresponding to this NativeLibrary instance. If this NativeLibrary represents the current process, this function will return null.
()
| 664 | * If this NativeLibrary represents the current process, this function will return null. |
| 665 | */ |
| 666 | public File getFile() { |
| 667 | if (libraryPath == null) |
| 668 | return null; |
| 669 | return new File(libraryPath); |
| 670 | } |
| 671 | |
| 672 | /** Close all open native libraries. */ |
| 673 | static void disposeAll() { |
no outgoing calls