my google drive contains a lot of documents, I want to extract the links of all files and copy them to an excel , plz help me with this automation
Build Datatable to create a datatable with the columns you need (ie Filename, Filepath, etc)
Use this activity to loop through all the files:
For each iteration of the loop, use Add Data Row to add the file info to your datatable.
After the loop, use Write Range or Append Range to write the datatable to Excel.
1 Like