Skip to content

Instantly share code, notes, and snippets.

View PovilasID's full-sized avatar

PovilasID PovilasID

  • Segfoltas Breathcount
View GitHub Profile
{
"__inputs": [
{
"name": "DS_INFLUXDB",
"label": "InfluxDB",
"description": "",
"type": "datasource",
"pluginId": "influxdb",
"pluginName": "InfluxDB"
}
@PovilasID
PovilasID / list-files-in-folders.gs
Last active September 26, 2022 19:58 — forked from sparkalow/list-files-in-folders.gs
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"
}];