Skip to content

Instantly share code, notes, and snippets.

View denisakov's full-sized avatar
💭
thrilled

denisakov

💭
thrilled
View GitHub Profile
@sparkalow
sparkalow / list-files-in-folders.gs
Created September 21, 2016 17:42
Google Apps Script to recursively list files in a folder
/*
Recusrsively add a list of files from a named foler to a sheet
*/
function onOpen() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var searchMenuEntries = [{
name: "Create List from Folder",
functionName: "start"
}];