A user associated with a file in Google Drive. Users can be accessed from File.getEditors()
, Folder.getViewers()
, and other methods.
// Log the email address of all users who have edit access to a file. var file = DriveApp.getFileById('1234567890abcdefghijklmnopqrstuvwxyz'); var editors = file.getEditors(); for (var i = 0; i < editors.length; i++) { Logger.log(editors[i].getEmail()); }
Methods
Method | Return type | Brief description |
---|---|---|
getDomain() | String | Gets the domain name associated with the user's account. |
getEmail() | String | Gets the user's email address. |
getName() | String | Gets the user's name. |
getPhotoUrl() | String | Gets the URL for the user's photo. |
Detailed documentation
getDomain()
Gets the domain name associated with the user's account.
// Log the domain names associated with all users who have edit access to a file. var file = DriveApp.getFileById('1234567890abcdefghijklmnopqrstuvwxyz'); var editors = file.getEditors(); for (var i = 0; i < editors.length; i++) { Logger.log(editors[i].getDomain()); }
Return
String
— the domain name associated with the user's account
getEmail()
Gets the user's email address. The user's email address is only available if the user has chosen to share the address from the Google+ account settings page, or if the user belongs to the same domain as the user running the script and the domain administrator has allowed all users within the domain to see other users' email addresses.
// Log the email address of all users who have edit access to a file. var file = DriveApp.getFileById('1234567890abcdefghijklmnopqrstuvwxyz'); var editors = file.getEditors(); for (var i = 0; i < editors.length; i++) { Logger.log(editors[i].getEmail()); }
Return
String
— the user's email's address, or a blank string if the email address is not available
getName()
Gets the user's name. This method returns null
if the user's name is not available.
// Log the names of all users who have edit access to a file. var file = DriveApp.getFileById('1234567890abcdefghijklmnopqrstuvwxyz'); var editors = file.getEditors(); for (var i = 0; i < editors.length; i++) { Logger.log(editors[i].getName()); }
Return
String
— the user's name, or null
if the name is not available
getPhotoUrl()
Gets the URL for the user's photo. This method returns null
if the user's photo is not
available.
// Log the URLs for the photos of all users who have edit access to a file. var file = DriveApp.getFileById('1234567890abcdefghijklmnopqrstuvwxyz'); var editors = file.getEditors(); for (var i = 0; i < editors.length; i++) { Logger.log(editors[i].getPhotoUrl()); }
Return
String
— the URL for the user's photo, or null
if the photo is not available