0
chrome.fileSystem.chooseEntry()를 사용하여 Chrome 패키지 앱에서 파일을 열려고하는데 대화 상자에 제안 된 파일 이름이 표시되도록 할 수 없습니다. suggestedName). 파일이 홈 경로에 있으면 제대로 작동하지만 동일한 홈 폴더에있는 폴더 안에있는 파일을 '제안'하지 않으면 작동하지 않습니다. 나는 LinuxMint에있다. So :chrome.fileSystem.chooseEntry에서 경로를 선택하는 중
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.