目前我正在開發一個項目,我必須訪問可以在Root中找到的Music目錄。我試圖讓與的PhoneGap /科爾多瓦插件目錄:https://github.com/apache/cordova-plugin-file無法訪問根目錄phonegap
我試了很多東西,我做研究的谷歌,但找不到什麼好.. 這裏是我的代碼:
/* THIS IS PLACED IN THE onDeviceReady FUNCTION! */
window.requestFileSystem(window.TEMPORARY, 1024*1024, onFileSystemSuccess, function(e) { alert("Something went wrong.."); });
alert("5");
/*************************************************/
function onFileSystemSuccess(fileSystem) {
alert("6"); // just for testing
fileSystem.root.getDirectory("Music", {}, getDirSuccess, function(e) { alert("Doesn't work"); });
}
function getDirSuccess(dirEntry) {
alert("7");
var directoryReader = dirEntry.createReader();
directoryReader.readEntries(readerSuccess,fail);
}
你能給我截圖你想打開的文件位置嗎? – Microsmsm
@Microsmsm http://prntscr.com/a790i5 – 247errorsnl