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
}
try {
Drive.Files.trash(file.getId());
} catch (err) {
console.log(err.message, file.getName());
}
let files = DriveApp.getFolderById(tempFolderId)
.searchFiles('"me" in owners and title != "nothing"');