How to get Google docs last edit date

前端 未结 3 1340
傲寒
傲寒 2021-02-20 10:24

I am working on an app in which I need to show the date when google doc was last edited.

Snapshot Here

I am able to get last modified date through Drive api

3条回答
  •  自闭症患者
    2021-02-20 11:09

    In Google Apps Script there is a DriveApp service that you can use. Something like this will work:

    function lastUpdatedOn() {
      var FILE_ID = 'FILEID';
    
      return DriveApp.getFileById(FILE_ID).getLastUpdated();
    }
    

    The documentation for that is here: https://developers.google.com/apps-script/reference/drive/file#getlastupdated

    Hope that helps.

提交回复
热议问题