This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function onOpen() { | |
// Add a custom menu to run the script | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var searchMenuEntries = [ {name: "Run", functionName: "run"}]; | |
ss.addMenu("Get Files", searchMenuEntries); | |
} | |
/* | |
* Copyright 2017 Mohsen Mesgarpour |