function onDeviceReady(){
getFileSystem();}
function getFileSystem(){
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0,
function(fileSystem){
root = fileSystem.root;
listDir(root);
}, function(evt){
console.log("File System Error: "+evt.target.error.code);
}
);
}
上面的代码给出了根目录,即 sdcard。我的要求是我需要使用 android phonegap 代码获取 sdcard 中名为“mydata”的文件夹的路径。或者请帮助我获取 sdcard 中默认文件夹(如 DCIM、图片等)的路径。
我尝试了很多,但没有得到我需要的结果。