Can any one explain how can i get folder name of specific folder on google drive and download the required file?

Hi Team,

I want to download file from specific folder name where folder name is known and file name is known.

all what i have tried is by using find folder activity i can able to find id of folder but how can i download filer from that specific folder where those same file might exist in another folder.

Did u slove this,if it resolved can u help me out

Hii can u share any ideas,if u resloved I am also struck the same issue

Use find folder activity and in search object pass the below query you will get folder id of required folder.

“name = ‘foldername’”

Using that id you can able to download the folder.

To get file under specific folder use below query.

“name ='”+filename+“’ and '”+folderid+“’ in parents”

by this you will get file id and use download file folder activity and download.

cheerss…!!!

1 Like