Is there a script to empty Google Team Drive Trash Related Folders?
问题 How can I make a script to empty the google team drive trash folder? If I have three main folders in google drive, it makes three main trash folders. How can I empty all those folders? All the scripts that I found only manage to empty the my drive trash folder. I have already tried a lot of scripts as you can see the codes below function createTimeDrivenTriggers() { ScriptApp.newTrigger('emptyThrash') .timeBased() .everyMinutes(1) .create(); } function emptyThrash() { Drive.Files.emptyTrash()