Skip to content

Instantly share code, notes, and snippets.

@bpwebs
Created November 7, 2023 19:17
Show Gist options
  • Save bpwebs/90e0110747d680351e0496c2dcce6962 to your computer and use it in GitHub Desktop.
Save bpwebs/90e0110747d680351e0496c2dcce6962 to your computer and use it in GitHub Desktop.
Access the CSV files in Google Drive with Google Apps Script
function combineCsv() {
const folder = DriveApp.getFolderById("1mSJUg80NRhtorSBBOsJylbDYTDDmpHWY");
const files = folder.getFilesByType(MimeType.CSV);
//Use the files variable
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment