Hello Ross,
I am currently using the following GAM command to redirect a CSV file and print file lists for individual users:
gam redirect csv ./UserFiles.csv user user@domain.com print filelist select <folderId> fields id,name,mimetype,webviewlink,parents showparentsidsaslist
This command works perfectly for individual users. However, when I attempt to use it for multiple users and folder IDs, the results only display for one particular user. Here is the modified command I used:
gam csv folderid.csv gam redirect csv ./UserFiles.csv user ~owner print filelist select ~folderid fields id,name,mimetype,webviewlink,parents showparentsidsaslist
I then further modified the command as follows:
gam csv bulk.csv gam user ~owner print filelist select ~fid fields id,name,mimetype,webviewlink,parents showparentsidsaslist todrive
This command works and shows all results, but the output is split into different sheets (one for each user and folder ID). For example, if I provide three user and folder IDs, it creates three separate sheets.
Is there any way to modify the command to get the results in a single sheet?