GAS googleドライブ内のファイルの最終更新日を取得する

GAS googleドライブ内のファイルの最終更新日を取得する

GAS(Google Apps Script)で、googleドライブ内のファイルの最終更新日を取得する手順を記述してます。対象のファイルに「getLastUpdated」を指定します。

環境

  • OS windows11 home
  • ブラウザ chrome 114.0.5735.199

ファイルの最終更新日を取得

ファイルの最終更新日を取得するには、「getLastUpdated」を使用します。

file.getLastUpdated()

実際に、取得してみます。

function myFunction() {

  // idから取得
  let f = DriveApp.getFileById('1wFZgGSjKoE5wX4Ws0b8xkUBjHov0A9IH');

  // 最終更新日を取得
  console.log(f.getLastUpdated());

  // フォーマットを指定
  console.log(Utilities.formatDate(f.getLastUpdated(), 'JST', 'yyyy-MM-dd HH:mm:ss'));

}

実行結果

※ファイルやフォルダのidは、対象を「Ctrl」+「C」でURLのコピーをして「URL」から確認できます。