1
크롬 파일 시스템 API를 사용하고 있습니다. 선택한 파일의 contentType을 찾고 싶습니다.크롬 파일 시스템 api 항목의 콘텐츠 유형
샘플 코드는
chrome.fileSystem.chooseEntry({type: 'openFile', accepts: accepts, acceptsMultiple: true }, function(theEntry, fileEntries) {
var fileCount = theEntry.length;....
//.... theEntry.contentType (Something like this)..........
https://developer.mozilla.org/en-US/docs/Web/API/FileEntry#File –
@DanielHerr, 그는 HTML5 파일 시스템이 아니라 Chrome 앱에 대해 이야기합니다. – Pacerier
@Pacerier Chrome Apps 파일 시스템 API는 웹 파일 시스템 API와 통합되어 있습니다. –