Return file name for files within Google Drive folder

Hi all,

I’m able to find a folder ID and return the names of folders within this folder ID, but it doesn’t return other files in this folder, only sub-folders.

How would I go about returning all file names.

I use a Find files and folders activity to return the folder ID to the ToUploadFolderFileList variable. Then I use the assign below to return list of files within the folder ID, but at the moment it only returns other folder.

ToUploadFileList = String.Join(“,”,ToUploadFolderFileList.AsEnumerable().Where(Function(s) s.MimeType.Contains(“application/vnd.google-apps.folder”)).Select(Function(a) a.Name))

Any help is appreciated,
Thanks!

HI @Shane_Curran

Check out this tutorial

Regards
Gokul

Hi @Shane_Curran

The expression used will return only the folders try the below to get the files

String.Join(“,”,ToUploadFolderFileList.AsEnumerable().Where(Function(s) Not s.MimeType.Contains(“application/vnd.google-apps.folder”)).Select(Function(a) a.Name))

Regards
Sudharsan

Great, works perfectly! Thanks!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.