You would think that accessing the name or email of the creator of a Google Drive file would be super easy. In the Google Drive display, there is already a provision for the creation date and the name of the file’s owner, and in the Shared Drive, we can see the creator’s name. It is hardly a security issue.
We can even fairly easily retrieve the details of the user who last modified the file using the Drive API (Google Apps Script Advanced Sheets Service) with the lastModifyingUser property of the returned file object, which gives us a happy little list of User properties that include the modifying user’s display name and email.
With the file creator, all we want is similar information, and it would be generated once and remain immutable. Seems like a no-brainer.
So why is it so hard to get the file creator details in Google Drive programmatically?
Continue reading “Why is it so Hard to get the Creator of a File in Google Drive Programmatically?”





