using (var dbx = new DropboxClient(Token)) { var list = await dbx.Files.................. foreach(var item in list.Entries) {
You can use ListFolderAsync to get file/folder listings, and DownloadAsync to download files. The tutorial has samples of both.
I want to get thumbail of image. how to do that?
You can use GetThumbnailAsync to get thumbnails.