I am getting the files from rootfolder of dropbox using following code but now i want to get the list of files from a specific folder .How can i do it in .net?
using (var dbx = new DropboxClient(user.DropboxAccessToken))
{
var list = await dbx.Files.ListFolderAsync(string.Empty);
}