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?

link|improve this question
could you be more specific? Do you have a question about which path to read from or how to open a file in C? – Matthew Willis Mar 1 '11 at 20:21
feedback

1 Answer

It works the same as Java code.

You need to use the SDK API Environment.getExternalStorageDirectory() in your Java code and then pass that to your native code, accessing it like a normal path.

link|improve this answer
thanks matthew.. – manivel Mar 2 '11 at 16:57
You're welcome. Please remember to mark answers if they are correct. – Matthew Willis Mar 2 '11 at 17:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.