자산 폴더의 경로가 무엇인지 알고 싶습니다. 그래픽을 렌더링 할 때 Irrlicht Engine을 사용하고 있으며 다음 코드에서 볼 수 있듯이 sd 카드 디렉토리에있는 MyGameAssets 폴더의 에셋을 사용하기 위해 폴더 파일 아카이브를 추가합니다. 내 안드로이드 게임이 잘 작동하지만 내가 전에 말했듯이, 나는 SDCARD/MyGameAssetsFolder/사용하지 않는 코드의 그 라인 파크Irrlicht Engine을 사용하여 Android NDK에서 에셋 폴더의 경로를 설정하는 방법은 무엇입니까?
//Create the irrlichtDevice
device = irr::createDevice(irr::video::EDT_OGLES1,
irr::core::dimension2d<irr::u32>(screenWidth, screenHeight), 32,
false, false, false, 0);
//With this path my Game can use the assets in the folder that is on SD card
device->getFileSystem()->addFolderFileArchive("/sdcard/myGameAssetsFolder/");
. Android Project의 Assets 폴더를 사용하고 싶습니다. 가능한 경로는 무엇입니까? sdcard 경로를 사용하지 않기 위해 다른 해결책이 있습니까?