function dellAllFile() {
const tempFolderId = 'тут айди папки'//папка куда сохраняем временные файлы
let files = DriveApp.getFolderById(tempFolderId).searchFiles('title != "nothing"');
while (files.hasNext()) {
let file = files.next();
//Drive.Files.remove(file.getId());// вариант 1
Drive.Files.trash(file.getId());// вариант 2
}