function onPlusReady() {
plus.io.requestFileSystem(plus.io.PRIVATE_WW, function(entry) {
alert(entry.name);
entry.root.getDirectory("newDir", {
create: true,
}, function(dir) {
alert("Directory Entry Name: " + dir.name);
}, function(e) {
alert("??????"+e.message);
});
}, function(e) {
alert("Resolve file URL failed: " + e.message);
});
}
在iphone上测试这段代码,其中alert("??????"+e.message); 一直报“不允许修改”。请问是什么原因造成的?
1 个回复
赵梦欢 - 专注前端,乐于分享!
PRIVATE_WWW: 应用运行资源目录常量
PRIVATE_DOC: 应用私有文档目录常量
PUBLIC_DOCUMENTS: 程序公用文档目录常量
PUBLIC_DOWNLOADS: 程序公用下载目录常量
四个资源目录,PRIVATE_WWW只可读,其他三个可读可写。