I'm developing a native apk for android with NDK 5.
My question is, how do I access to write and read from external SD card from native code?
PS: Testing under Galaxy Tab.
I'm developing a native apk for android with NDK 5.
My question is, how do I access to write and read from external SD card from native code?
PS: Testing under Galaxy Tab.
Have you tried:
fopen("/sdcard/filename.ext", "r+")
?