SoftwareTester
SoftwareTester

Reputation: 1090

Display searchresults

I would like to know how to display searchresults using the standard driveinterface.

function getSearchResults(searchText)
{
  // SearchText contains a info about fulltext, title, modifieddate and parents 
  var filesFound = DriveApp.searchFiles(searchText);

  //   ... Now display filesFound in the driveinterface (if possible)
  //   or in a similar way (how ?)
}

Is it possible to actually use the standardintreface for displaying filesFound , either directly or by creating a folder and displaying that folder? (how??)

Or will it be necessary to creat a form, create your own interface etc.?

Upvotes: 0

Views: 34

Answers (1)

Eric Koleda
Eric Koleda

Reputation: 12671

It is not currently possible to embed the Drive application directly into your UI. You'll need to create your own interface or give the user a link to the Drive directly.

Upvotes: 1

Related Questions