我一直在尝试将此 Chrome 代码与 chooseEntry 类型一起使用为“openDirectory”,但我认为它尚未实现,所以我想知道是否已经有其他方法可以做到这一点。
清单.json:
"permissions": [
"notifications",
{"fileSystem": ["write", "directory"]}
],
Javascript:
chrome.fileSystem.chooseEntry({type:'openDirectory'},function(userDirEntry){
/*fill with files*/
});
这就是我得到的:
> Uncaught Error: Invalid value for argument 1. Property 'type': Value must be one of: [openFile, openWritableFile, saveFile].