Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
TipoMime
Un'enumerazione che fornisce l'accesso alle dichiarazioni dei tipi MIME senza digitare esplicitamente le stringhe. I metodi che si aspettano un tipo MIME visualizzato come stringa (ad esempio
'image/png') accettano anche uno dei valori riportati di seguito, a condizione che il metodo supporti il tipo MIME di base.
// Use MimeType enum to log the name of every Google Doc in the user's Drive.constdocs=DriveApp.getFilesByType(MimeType.GOOGLE_DOCS);while(docs.hasNext()){constdoc=docs.next();Logger.log(doc.getName());}// Use plain string to log the size of every PNG in the user's Drive.constpngs=DriveApp.getFilesByType('image/png');while(pngs.hasNext()){constpng=pngs.next();Logger.log(png.getSize());}
Proprietà
Proprietà
Tipo
Descrizione
GOOGLE_APPS_SCRIPT
Enum
Rappresentazione del tipo MIME per un progetto Google Apps Script.
GOOGLE_DRAWINGS
Enum
Rappresentazione del tipo MIME di un file di Google Disegno.
GOOGLE_DOCS
Enum
Rappresentazione del tipo MIME per un file di Documenti Google.
GOOGLE_FORMS
Enum
Rappresentazione del tipo MIME per un file di Moduli Google.
GOOGLE_SHEETS
Enum
Rappresentazione del tipo MIME per un file di Fogli Google.
GOOGLE_SITES
Enum
Rappresentazione del tipo MIME per un file di Google Sites.
GOOGLE_SLIDES
Enum
Rappresentazione del tipo MIME di un file di Presentazioni Google.
FOLDER
Enum
Rappresentazione del tipo MIME per una cartella di Google Drive.
SHORTCUT
Enum
Rappresentazione del tipo MIME per una scorciatoia di Google Drive.
BMP
Enum
Rappresentazione del tipo MIME per un file immagine BMP (in genere .bmp).
GIF
Enum
Rappresentazione del tipo MIME per un file immagine GIF (in genere .gif).
JPEG
Enum
Rappresentazione del tipo MIME per un file immagine JPEG (in genere .jpg).
PNG
Enum
Rappresentazione del tipo MIME per un file immagine PNG (in genere .png).
SVG
Enum
Rappresentazione del tipo MIME per un file immagine SVG (in genere .svg).
PDF
Enum
Rappresentazione del tipo MIME per un file PDF (in genere .pdf).
CSS
Enum
Rappresentazione del tipo MIME per un file di testo CSS (in genere .css).
CSV
Enum
Rappresentazione del tipo MIME per un file di testo CSV (in genere .csv).
HTML
Enum
Rappresentazione del tipo MIME per un file di testo HTML (in genere .html).
JAVASCRIPT
Enum
Rappresentazione del tipo MIME per un file di testo JavaScript (in genere .js).
PLAIN_TEXT
Enum
Rappresentazione del tipo MIME per un file di testo normale (in genere .txt).
RTF
Enum
Rappresentazione del tipo MIME per un file di testo RTF (in genere .rtf).
OPENDOCUMENT_GRAPHICS
Enum
Rappresentazione del tipo MIME per un file grafico OpenDocument (in genere .odg).
OPENDOCUMENT_PRESENTATION
Enum
Rappresentazione del tipo MIME per un file di presentazione OpenDocument (in genere .odp).
OPENDOCUMENT_SPREADSHEET
Enum
Rappresentazione del tipo MIME per un file di foglio di lavoro OpenDocument (in genere .ods).
OPENDOCUMENT_TEXT
Enum
Rappresentazione del tipo MIME per un file di elaborazione testi OpenDocument (in genere .odt).
MICROSOFT_EXCEL
Enum
Rappresentazione del tipo MIME per un file del foglio di lavoro Microsoft Excel (in genere .xlsx).
MICROSOFT_EXCEL_LEGACY
Enum
Rappresentazione del tipo MIME per un file Microsoft Excel precedente (in genere .xls).
MICROSOFT_POWERPOINT
Enum
Rappresentazione del tipo MIME per un file di presentazione Microsoft PowerPoint (in genere .pptx).
MICROSOFT_POWERPOINT_LEGACY
Enum
Rappresentazione del tipo MIME per un file Microsoft PowerPoint precedente (in genere .ppt).
MICROSOFT_WORD
Enum
Rappresentazione del tipo MIME per un file del documento Microsoft Word (in genere .docx).
MICROSOFT_WORD_LEGACY
Enum
Rappresentazione del tipo MIME per un file Microsoft Word precedente (in genere .doc).
ZIP
Enum
Rappresentazione del tipo MIME per un file dell'archivio ZIP (in genere .zip).
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Mancano le informazioni di cui ho bisogno","missingTheInformationINeed","thumb-down"],["Troppo complicato/troppi passaggi","tooComplicatedTooManySteps","thumb-down"],["Obsoleti","outOfDate","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Problema relativo a esempi/codice","samplesCodeIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2025-07-26 UTC."],[[["\u003cp\u003e\u003ccode\u003eMimeType\u003c/code\u003e is an enumeration providing access to MIME-type declarations without manually typing strings, offering a more convenient way to specify file types in Apps Script.\u003c/p\u003e\n"],["\u003cp\u003eMethods accepting MIME types as strings (e.g., \u003ccode\u003e'image/png'\u003c/code\u003e) also accept \u003ccode\u003eMimeType\u003c/code\u003e enum values if the underlying MIME type is supported.\u003c/p\u003e\n"],["\u003cp\u003eThis enumeration covers a wide range of file types, including Google Workspace files, common image and document formats, and Microsoft Office file types.\u003c/p\u003e\n"],["\u003cp\u003eRefer to the provided property table for a comprehensive list of supported MIME types and their corresponding \u003ccode\u003eMimeType\u003c/code\u003e enum values.\u003c/p\u003e\n"]]],[],null,["# Enum MimeType\n\nMimeType\n\nAn enumeration that provides access to MIME-type declarations without typing the strings\nexplicitly. Methods that expect a MIME type rendered as a string (for example, `\n'image/png'`) also accept any of the values below, so long as the method supports the\nunderlying MIME type.\n\n```javascript\n// Use MimeType enum to log the name of every Google Doc in the user's Drive.\nconst docs = DriveApp.getFilesByType(MimeType.GOOGLE_DOCS);\nwhile (docs.hasNext()) {\n const doc = docs.next();\n Logger.log(doc.getName());\n}\n\n// Use plain string to log the size of every PNG in the user's Drive.\nconst pngs = DriveApp.getFilesByType('image/png');\nwhile (pngs.hasNext()) {\n const png = pngs.next();\n Logger.log(png.getSize());\n}\n``` \n\n### Properties\n\n| Property | Type | Description |\n|-------------------------------|--------|---------------------------------------------------------------------------------------------|\n| `GOOGLE_APPS_SCRIPT` | `Enum` | Representation of MIME type for a Google Apps Script project. |\n| `GOOGLE_DRAWINGS` | `Enum` | Representation of MIME type for a Google Drawings file. |\n| `GOOGLE_DOCS` | `Enum` | Representation of MIME type for a Google Docs file. |\n| `GOOGLE_FORMS` | `Enum` | Representation of MIME type for a Google Forms file. |\n| `GOOGLE_SHEETS` | `Enum` | Representation of MIME type for a Google Sheets file. |\n| `GOOGLE_SITES` | `Enum` | Representation of MIME type for a Google Sites file. |\n| `GOOGLE_SLIDES` | `Enum` | Representation of MIME type for a Google Slides file. |\n| `FOLDER` | `Enum` | Representation of MIME type for a Google Drive folder. |\n| `SHORTCUT` | `Enum` | Representation of MIME type for a Google Drive shortcut. |\n| `BMP` | `Enum` | Representation of MIME type for a BMP image file (typically .bmp). |\n| `GIF` | `Enum` | Representation of MIME type for a GIF image file (typically .gif). |\n| `JPEG` | `Enum` | Representation of MIME type for a JPEG image file (typically .jpg). |\n| `PNG` | `Enum` | Representation of MIME type for a PNG image file (typically .png). |\n| `SVG` | `Enum` | Representation of MIME type for an SVG image file (typically .svg). |\n| `PDF` | `Enum` | Representation of MIME type for a PDF file (typically .pdf). |\n| `CSS` | `Enum` | Representation of MIME type for a CSS text file (typically .css). |\n| `CSV` | `Enum` | Representation of MIME type for a CSV text file (typically .csv). |\n| `HTML` | `Enum` | Representation of MIME type for an HTML text file (typically .html). |\n| `JAVASCRIPT` | `Enum` | Representation of MIME type for a JavaScript text file (typically .js). |\n| `PLAIN_TEXT` | `Enum` | Representation of MIME type for a plain text file (typically .txt). |\n| `RTF` | `Enum` | Representation of MIME type for a rich text file (typically .rtf). |\n| `OPENDOCUMENT_GRAPHICS` | `Enum` | Representation of MIME type for an OpenDocument graphics file (typically .odg). |\n| `OPENDOCUMENT_PRESENTATION` | `Enum` | Representation of MIME type for an OpenDocument presentation file (typically .odp). |\n| `OPENDOCUMENT_SPREADSHEET` | `Enum` | Representation of MIME type for an OpenDocument spreadsheet file (typically .ods). |\n| `OPENDOCUMENT_TEXT` | `Enum` | Representation of MIME type for an OpenDocument word-processing file (typically .odt). |\n| `MICROSOFT_EXCEL` | `Enum` | Representation of MIME type for a Microsoft Excel spreadsheet file (typically .xlsx). |\n| `MICROSOFT_EXCEL_LEGACY` | `Enum` | Representation of MIME type for a Microsoft Excel legacy file (typically .xls). |\n| `MICROSOFT_POWERPOINT` | `Enum` | Representation of MIME type for a Microsoft PowerPoint presentation file (typically .pptx). |\n| `MICROSOFT_POWERPOINT_LEGACY` | `Enum` | Representation of MIME type for a Microsoft PowerPoint legacy file (typically .ppt). |\n| `MICROSOFT_WORD` | `Enum` | Representation of MIME type for a Microsoft Word document file (typically .docx). |\n| `MICROSOFT_WORD_LEGACY` | `Enum` | Representation of MIME type for a Microsoft Word legacy file (typically .doc). |\n| `ZIP` | `Enum` | Representation of MIME type for a ZIP archive file (typically .zip). |"]]