We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
BruceVWilcox
2 months agoExplorer | Level 4
Why is my local DropBox folder not readable with java?
I am trying to read files in DropBox folders on my Mac with java.
The following code:
String dir = "/Users/brucewilcox/Library/CloudStorage/Dropbox/Apps/Form8949DotCom/taxdochub-forms-...
BruceVWilcox
Explorer | Level 4
It turns out that all of the individual files in the folder do not have ANY permissions for users other than me. As such the folder itself is not readable.
I am running the java app to read the directory and files from my IntelliJ IDE. I am not sure who the user is when the IDE runs.
But I am not sure why the permissions are so narrow. The folder is populated programmatically with files from a java app running in Google Cloud.
What controls the file permissions?
Here are code excerpts:
DbxClientV2 client = getDbxClientV2( );
try ( InputStream in = new ByteArrayInputStream( fileBytes ) ) {
FileMetadata metadata
= client.files( )
.uploadBuilder( filePath )
.uploadAndFinish( in );
///…
}
public DbxClientV2 getDbxClientV2( ) {
String accessToken = this.getAccessToken( );
DbxRequestConfig config
= DbxRequestConfig
.newBuilder( this.getAppIdentifier( ) )
.build( );
DbxClientV2 client = new DbxClientV2( config, accessToken );
return client;
}
DB-Des
2 months agoDropbox Engineer
BruceVWilcox, file permissions are controlled by the user locally. Once the Dropbox app is installed and syncing is allowed, that user should have access to the contents of that Dropbox folder.
Have you confirmed the file or folder you are attempting to access exists with directory.exists()
function in your Java script?
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!