使用 Google 脚本使用列表中的名称更改 PDF 文件名

Change PDF file name with names from list with Google Scripts

我有一个新文件名列表,可以应用于 google 驱动器中的文件列表。

我在 google sheet 中有文件 ID 和相应的新文件名(column1 with FilesIDs,column2 与新文件名)

我找到的所有解决方案都与从 旧名称 重命名为 新名称 有关。 我正在寻找一种使用 FileID

重命名 google 驱动器文件的方法

脚本会是什么样子?非常感谢!

function changenames() {
  const ss=SpreadsheetApp.getActive();
  const sh=ss.getActiveSheet();
  const dt=sh.getRange(2,1,sh.getLastRow()-1,2).getValues();
  dt.forEach(function(r){DriveApp.getFileById(r[0]).setName(r[1])});
}