Created
November 7, 2023 19:17
-
-
Save bpwebs/90e0110747d680351e0496c2dcce6962 to your computer and use it in GitHub Desktop.
Access the CSV files in Google Drive with Google Apps Script
This file contains hidden or 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 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