Skip to content

Instantly share code, notes, and snippets.

@tech234a

tech234a/Code.gs Secret

Created Sep 13, 2021
Embed
What would you like to do?
List Google Drive File IDs on script.google.com
//partially from https://spreadsheet.dev/export-list-of-files-in-google-drive-to-google-sheets-using-apps-script
function myFunction() {
var myFiles = DriveApp.getFiles();
while(myFiles.hasNext()) {
var file = myFiles.next();
if(file != null) {
console.log(file.getId());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment