So you want to know how to determine a system path on Android so that you can address the location. Seems that Google and StackExchange think this is the function you are after:
File dir = Environment.getExternalStorageDirectory(); // external to your application, not external to the machine
String path = dir.getAbsolutePath();
File dir = Environment.getExternalStorageDirectory(); // external to your application, not external to the machine
String path = dir.getAbsolutePath();
To copy to clipboard, switch view to plain text mode
except you want it from C++ not Java.
Bookmarks