1
我正在使用chrome文件系統API。想要找到所選文件的contentType。鉻文件系統api中條目的ContentType
示例代碼段
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,他談論的是Chrome應用程序,而不是HTML5文件系統。 – Pacerier
@Pacerier Chrome Apps文件系統API與Web文件系統api集成在一起。 –