GAS googleドライブ内のファイルの作成日時を取得する
- 作成日 2022.09.18
- Google Apps Script
- Google Apps Script
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」から確認できます。
-
前の記事
MariaDB keyが存在するかjsonから確認する 2022.09.18
-
次の記事
PostgreSQL 値を比較して等しい場合はnullを返す 2022.09.18
コメントを書く