我正在尝试在SD卡中创建一个用于多平台的目录。
但似乎有些不对劲。
function createDir(dirname){
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0,
function(fileSys) {
fileSys.root.getDirectory(dirname, {create: true,
exclusive: false},
function(directory) {
console.log("Directory has been created");
}, createError);
}, createError);
}
function createError(error){
alert(error.code);
}
我是否需要添加任何插件才能使其正常工作?
我认为问题出在window.requestFileSystem
。我无法查看日志。我正在使用最新的cordova。
谢谢!