#include <jni.h> #include <android/log.h> char cwd[1024]; if (getcwd(cwd,sizeof(cwd)) != NULL) __android_log_print(ANDROID_LOG_INFO,"",cwd);
要获取应用程序目录,您需要使用对Java代码的JNI调用,而Java代码又从Context获取android应用程序目录.