chrome.fileSystem.chooseEntry() を使用して Chrome パッケージ アプリでファイルを開こうとしていますが、ダイアログに提案されたファイル名 (suggestedName を介して渡される) を表示することはできません。ファイルがホームパスにある場合は問題ありませんが、同じホームフォルダー内のフォルダー内にあるファイルを「提案」した場合は機能しません。私は LinuxMint を使用しています。そう:
chrome.fileSystem.chooseEntry({type: 'openFile', suggestedName: "~/log.txt"}, callback) ---> works! but,
chrome.fileSystem.chooseEntry({type: 'openFile', suggestedName: "~/foo/log.txt"}, callback) ---> doesn't! It just opens dialog showing home folder. Both file and folder exist.