Getfilesdir() From Ndk?
Is there a way to get the application's directory to save private data to a file for my application directly from the NDK? In other words, I need an equivalent of the Java function
Solution 1:
I have custom helper class for accessing various paths, for the data directory I do this:
- Read
/proc/self/cmdline
or/proc/**MyPID**/cmdline
- Append the results from #1 to
/data/data/
Example results:
/data/data/com.yourcompany.yourproduct/
Post a Comment for "Getfilesdir() From Ndk?"