不能新建html文件夹,html5 window.requestFileSystem 无法在手机上创建文件夹

window.webkitStorageInfo.requestQuota(window.PERSISTENT, 5 * 1024 * 1024, function (grantedBytes) {

_createDictory("renwen/ebook1/", function (result, msg) {

console.log('result: ' + result + ";msg:" + msg);

});

}, function (e) {

console.log('Error', e);

});

};

var _createDictory = function (folders, callback) {

console.log('本次创建的文件目录为:' + folders);

//打开FileSystem

alert(window.TEMPORARY);

window.requestFileSystem(window.PERSISTENT, 5 * 1024 * 1024, function (fileSystem) {

var _create = function (parent, dirs, cb) {

if (dirs.length == 0) {

cb(true, parent);

} else {

var dir = dirs[0];

parent.getDirectory(dir, { create: true }, function (dirEntry) {

parent = dirEntry;

console.log('创建目录成功:' + parent.fullPath);

_create(parent, dirs.slice(1), cb);

}, function (e) {

console.log('创建目录出错:' + parent.fullPath + "/" + dir);

cb(false, '创建目录出错:' + parent.fullPath + "/" + dir);

});

}

}

//

var dirs = folders.split('/');

console.log('开始创建目录:' + fileSystem.root.fullPath + ";目录层级:" + dirs);

var parent = fileSystem.root;

var isSuccess = true;

_create(parent, dirs, function (reuslt, p) {

if (reuslt) {

console.log('创建目录完成,fileSystem.root.fullPath:' + fileSystem.root.fullPath);

console.log('创建目录完成,Directory.fullPath:' + p.fullPath);

callback(true, p.fullPath);

} else {

callback(false, p);

}

});

}, function (evt) {

// console.log("创建目录时,获取FileSystem出错:" + evt.target.error.code);

_errorHandler(evt);

callback(false, 'FileSystem出错');

})

};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值