如何在Chrome应用中保存多个文件

时间:2013-11-03 22:53:02

标签: javascript google-chrome

我正在尝试将多个文件保存到目录中 - 在一个操作中。如果我正确理解chrome fileSystem api documentation,当我使用 chrome.fileSystem.chooseEntry openDirectory 选项时,这应该是可行的。这是否允许?
但是,文档非常简约,我也没有通过谷歌找到任何例子。

更多背景:
我有权访问目录并具有写权限:

/*you need chrome >= Version 31.x [currently chrome beta]*/
"permissions": [
    {"fileSystem": ["write", "directory"]}, "storage", 
]

然后你剩下 chrome.fileSystem.chooseEntry(对象选项,函数回调) chrome.fileSystem.getWritableEntry(条目条目,函数回调),但是我没有弄清楚这些功能是否是我想要的。

以下是如何将单个文件保存到文件系统中:

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 只授予我阅读时,如何保存多个文件? -rights?

1 个答案:

答案 0 :(得分:8)

我相信这应该有用。

chrome.fileSystem.chooseEntry({type:'openDirectory'}, function(entry) {
    chrome.fileSystem.getWritableEntry(entry, function(entry) {
        entry.getFile('file1.txt', {create:true}, function(entry) {
            entry.createWriter(function(writer) {
                writer.write(new Blob(['Lorem'], {type: 'text/plain'}));
            });
        });
        entry.getFile('file2.txt', {create:true}, function(entry) {
            entry.createWriter(function(writer) {
                writer.write(new Blob(['Ipsum'], {type: 'text/plain'}));
            });
        });
    });
});