We Want to Hear From You! What Do You Want to See on the Community? Tell us here!
Forum Discussion
inteldroid
7 years agoNew member | Level 2
Get files via .NET
I know the code and APICODE is working because it does return the user accout correctly, but for whatever reason I cannot list the directories or files.
Using dbx = New DropboxClient("APICODE")
Dim full = Await dbx.Users.GetCurrentAccountAsync()
Console.WriteLine("{0} - {1}", full.Name.DisplayName, full.Email)
ListBox1.Items.Add(full.Email)
Dim list = Await dbx.Files.ListFolderAsync(String.Empty)
For Each item In list.Entries
If item.IsFile Then
Console.WriteLine("F{0,8} {1}", item.AsFile.Size, item.Name)
End If
If item.IsFolder Then
Console.WriteLine("D {0}/", item.Name)
End If
Next
End Using
I figured it out... I had to put the files in a specific APPS folder.
1 Reply
- inteldroid7 years agoNew member | Level 2
I figured it out... I had to put the files in a specific APPS folder.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.6,033 PostsLatest Activity: 3 years ago
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!