Gojko Adzic
Gojko Adzic

Reputation: 1251

files.find query for extension

Is there a way to list only files with a particular extension?

I tried "title contains '.mm'" but this returns no results, although there is a file like that in Drive. I also tried "mimeType = 'application/vnd.google.drive.ext-type.mm', no luck as well.

Upvotes: 2

Views: 1161

Answers (1)

soheilpro
soheilpro

Reputation: 986

You should use:

fileExtension = 'mm'

Upvotes: 5

Related Questions