我正在尝试将多个文件保存到一个目录中 - 在一个操作中。如果我正确理解了chrome fileSystem api 文档,那么当我对chrome.fileSystem.chooseEntry使用openDirectory选项时,这应该是可能的。这甚至允许吗?
但是,文档非常简约,我也没有通过谷歌找到任何示例。
更多背景:
我有访问目录的适当权限,也有写权限:
/*you need chrome >= Version 31.x [currently chrome beta]*/
"permissions": [
{"fileSystem": ["write", "directory"]}, "storage",
]
然后你剩下chrome.fileSystem.chooseEntry(object options, function callback)和chrome.fileSystem.getWritableEntry(entry entry, function callback),但我不知道这些函数是否是我想要的。
以下是如何将单个文件保存到文件系统:
chrome.fileSystem.chooseEntry({type:"saveFile", suggestedName:"image.jpg"},
function(entry, array){
save(entry, blob); /*the blob was provided earlier*/
}
);
function save(fileEntry, content) {
fileEntry.createWriter(function(fileWriter) {
fileWriter.onwriteend = function(e) {
fileWriter.onwriteend = null;
fileWriter.truncate(content.size);
};
fileWriter.onerror = function(e) {
console.log('Write failed: ' + e.toString());
};
var blob = new Blob([content], {'type': 'image/jpeg'});
fileWriter.write(blob);
}, errorHandler);
}
但是当我使用chrome.fileSystem.chooseEntry({type:"openDirectory",..}或者openDirectory只授予我读取权限时,如何保存多个文件?