Checks if the given filename corresponds to an office file.
static bool isOfficeFile(String filename) { return _hasExtension( filename, ['doc', 'docx', 'xls', 'xlsx', 'ppt', 'pptx']); }