Dizeleri yazmadan MIME türü bildirimlere erişim sağlayan bir numaralandırma
açık bir şekilde belirtmelisiniz. Bir MIME türünün dize olarak oluşturulmasını bekleyen yöntemler (örneğin,
'image/png'
), yöntem şu değeri desteklediği sürece aşağıdaki değerlerden herhangi birini de kabul eder:
temel MIME türü olabilir.
// Use MimeType enum to log the name of every Google Doc in the user's Drive. var docs = DriveApp.getFilesByType(MimeType.GOOGLE_DOCS); while (docs.hasNext()) { var doc = docs.next(); Logger.log(doc.getName()) } // Use plain string to log the size of every PNG in the user's Drive. var pngs = DriveApp.getFilesByType('image/png'); while (pngs.hasNext()) { var png = pngs.next(); Logger.log(png.getSize()); }
Özellikler
Özellik | Tür | Açıklama |
---|---|---|
GOOGLE_APPS_SCRIPT | Enum | Google Apps Komut Dosyası projesi için MIME türünün temsili. |
GOOGLE_DRAWINGS | Enum | Google Çizimler dosyası için MIME türünün temsili. |
GOOGLE_DOCS | Enum | Google Dokümanlar dosyası için MIME türünün temsili. |
GOOGLE_FORMS | Enum | Google Formlar dosyası için MIME türünün temsili. |
GOOGLE_SHEETS | Enum | Google E-Tablolar dosyasının MIME türünün temsili. |
GOOGLE_SITES | Enum | Google Sites dosyası için MIME türünün temsili. |
GOOGLE_SLIDES | Enum | Google Slaytlar dosyası için MIME türünün temsili. |
FOLDER | Enum | Google Drive klasörü için MIME türünün temsili. |
SHORTCUT | Enum | Google Drive kısayolu için MIME türünün temsili. |
BMP | Enum | BMP resim dosyası (genellikle .bmp) için MIME türünün temsili. |
GIF | Enum | GIF resim dosyası (genellikle .gif) için MIME türünün gösterilmesi. |
JPEG | Enum | Bir JPEG resim dosyası (genellikle .jpg) için MIME türünün temsili. |
PNG | Enum | PNG resim dosyası (genellikle .png) için MIME türünün temsili. |
SVG | Enum | SVG resim dosyası (genellikle .svg) için MIME türünün temsilidir. |
PDF | Enum | PDF dosyası (genellikle .pdf) için MIME türünün temsili. |
CSS | Enum | CSS metin dosyası (genellikle .css) için MIME türünün temsili. |
CSV | Enum | CSV metin dosyası (genellikle .csv) için MIME türünün temsili. |
HTML | Enum | HTML metin dosyası (genellikle .html) için MIME türünün temsili. |
JAVASCRIPT | Enum | JavaScript metin dosyası (genellikle .js) için MIME türünün temsili. |
PLAIN_TEXT | Enum | Düz metin dosyası (genellikle .txt) için MIME türünün temsili. |
RTF | Enum | Zengin metin dosyası (genellikle .rtf) için MIME türünün temsili. |
OPENDOCUMENT_GRAPHICS | Enum | OpenDocument grafik dosyası (genellikle .odg) için MIME türünün temsili. |
OPENDOCUMENT_PRESENTATION | Enum | OpenDocument sunu dosyası (genellikle .odp) için MIME türünün temsili. |
OPENDOCUMENT_SPREADSHEET | Enum | OpenDocument e-tablo dosyası (genellikle .ods) için MIME türünün temsili. |
OPENDOCUMENT_TEXT | Enum | OpenDocument kelime işleme dosyası (genellikle .odt) için MIME türünün temsili. |
MICROSOFT_EXCEL | Enum | Microsoft Excel e-tablo dosyası (genellikle .xlsx) için MIME türünün gösterimi. |
MICROSOFT_EXCEL_LEGACY | Enum | Microsoft Excel eski dosyası (genellikle .xls) için MIME türünün temsili. |
MICROSOFT_POWERPOINT | Enum | Microsoft PowerPoint sunu dosyası (genellikle .pptx) için MIME türünün temsili. |
MICROSOFT_POWERPOINT_LEGACY | Enum | Microsoft PowerPoint'teki eski bir dosya (genellikle .ppt) için MIME türünün temsili. |
MICROSOFT_WORD | Enum | Microsoft Word doküman dosyası (genellikle .docx) için MIME türünün temsili. |
MICROSOFT_WORD_LEGACY | Enum | Microsoft Word'ün eski dosyası (genellikle .doc) için MIME türünün temsili. |
ZIP | Enum | Bir ZIP arşiv dosyası (genellikle .zip) için MIME türünün temsili. |