Access SubFolder to Download Item

When I run the command it returns GetDriveInfo Me A collection of all items Root, how do I get into a subfolder and have to return the files in this folder?

You can loop through Drive collection and check items where cloudstorage.Drive.Items[x].ItemType = ciFolder and then retrieve files under this folder via cloudstorage.Drive.Items[x].Folder

Thank you! Worked!