GAS googleドライブ内のファイルの作成日時を取得する

GAS googleドライブ内のファイルの作成日時を取得する

GAS(Google Apps Script)で、googleドライブ内のファイルの作成日時を取得する手順を記述してます。

環境

  • OS windows11 home
  • ブラウザ chrome 105.0.5195.102

ファイルの作成日時を取得

ファイルの作成日時を取得するには、「getDateCreated」を使用します。

getDateCreated(file)

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

function myFunction() {  

  // idからファイルを取得
  let file = DriveApp.getFileById('xxxxxxxxxxxxxx');  

  console.log( file.getDateCreated() );

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

}

実行結果をみると、取得されていることが確認できます。

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