chrome.fileSystemを使用して、ユーザーが選択したディレクトリ内にファイルを作成できますか?選択したエントリがディレクトリ全体にアクセスできるようなもので、作成、読み取り、削除操作を実行できますか?私は選択されたディレクトリ内のファイルパスをリストしています。Chromeファイルシステムを使用してユーザーが選択したディレクトリ内にファイルを作成
chrome.fileSystem.chooseEntry({type: 'openDirectory'}, function(theEntry) {
if (!theEntry) {
output.textContent = 'No Directory selected.';
return;
}
// use local storage to retain access to this file
chrome.storage.local.set({'chosenResultDir': chrome.fileSystem.retainEntry(theEntry)});
??? // writeNewFileTochosenResultDir(theEntry); // ?????
});