Search Google Drive folder from Google Site using Apps Script
问题 I have made a Google Site that contains a lot of Google Drive folders. Whenever I do a search using the Google Sites search thing, I can only find words that are one the Google Site. So the Google Drive Folders are not included in the search results. Anyway, I was looking on the web and I came across this piece of code: function doGet(e) { var results = DriveApp.getFolderById('File ID').searchFiles('fullText contains "' + e.parameter.q + '"'); var app = UiApp.createApplication(); var panel =