1
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代碼獲取名爲'mydata'的文件夾的路徑,該文件夾位於sdcard中。或者PLZ幫助我在SD卡中獲得DCIM,Pictures等默認文件夾的路徑。獲取目錄路徑的Android手機代碼?
我很多嘗試,但我沒有得到我需要的結果。