How to retrieve the path of a (native) shared library that was loaded using System.loadLibrary?
Printable View
How to retrieve the path of a (native) shared library that was loaded using System.loadLibrary?
I'm not sure this is even possible, since the actual path is implementation dependent and handled deep down in the guts.
You could of course search the entire filesystem for the file specified :)
// Json
I know that the OS is linux and so I'm looking for a linux path.
Thanks Json for your reply.