You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
melium
8 years agoHelpful | Level 6
uploading file to dropbox unauthorized access denied
i get this error System.UnauthorizedAccessException: Access to the path '/data/data/AndroidMaster.AndroidMaster/files' is denied. public void FileUploadToDropbox()
{
string f...
- 8 years ago
my working code
void Upload() { using (DropboxClient dbx = new DropboxClient("token")) { string file = "/data.db3"; byte[] byteArray = File.ReadAllBytes(@"/data/data/AndroidMaster.AndroidMaster/files/data.db3"); MemoryStream stream1 = new MemoryStream(byteArray); var updated = dbx.Files.UploadAsync(file, WriteMode.Overwrite.Instance, body: stream1); } }
melium
Helpful | Level 6
thx for replying man, i got it working. ill post my code here
melium
8 years agoHelpful | Level 6
my working code
void Upload() { using (DropboxClient dbx = new DropboxClient("token")) { string file = "/data.db3"; byte[] byteArray = File.ReadAllBytes(@"/data/data/AndroidMaster.AndroidMaster/files/data.db3"); MemoryStream stream1 = new MemoryStream(byteArray); var updated = dbx.Files.UploadAsync(file, WriteMode.Overwrite.Instance, body: stream1); } }
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 12 months agoIf 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!