如何使用Filesystem API重命名Chrome应用程序中的文件?

时间:2016-06-15 20:02:59

标签: javascript google-chrome-extension google-chrome-app

我在Chrome应用中使用Chrome文件系统,我想重命名本地文件。我知道如何编写新文件:

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

哪个有效,但是如果已经存在一个文件,我该如何重命名它(带覆盖)?或者,我该如何删除文件,复制文件或移动文件?这不可能吗?

更新:

基于Daniel Herr对HTML文件系统api共享的解释,我制作了以下代码,解决了我的问题。

function rename_file(file_location, file_old_name, file_new_name){
    chrome.fileSystem.getWritableEntry(file_location, function(entry) {        
        entry.getFile(file_old_name, {create:false}, function(entry) {
            entry.moveTo(file_location, file_new_name, 
                     function(){console.log("success");}, 
                     function(){
                        console.log("fail"); 
                      });
        });
    });
}

1 个答案:

答案 0 :(得分:2)

如果文件位于您已获得访问权限的文件夹中,则可以使用entry.moveTo方法重命名该文件。

fileentry.getParent(function(parent) {
 fileentry.moveTo(parent, "newname")
})

https://developer.mozilla.org/en-US/docs/Web/API/Entry#moveTo