Shakthi
Shakthi

Reputation: 38

Google app script - search hosted attachments

How to search for hosted attachments in google sites using Google App script? I tried to search using page.search("query", options) with page type as Webpage, Filecabinetpage, but I'm not able to search my page attachments. Can anybody help me in this?

Upvotes: 0

Views: 93

Answers (1)

Srik
Srik

Reputation: 7957

There is no direct search method. However, you can use the Page.getAttachments() to get a list of attachments and do a manual search through them.

You can open a request in the Issue tracker for this feature to be added.

Upvotes: 1

Related Questions