I have been trying all day to access my team's root folder with the Java SDK and I haven't been able to find any documentation.
My folder structure is like this:
/MyName
/Folder-I-Want-To-Access
/Other-Folder-I-Want-To-Access
Unfortunately I'm trying to do this in Rhino, so apologies that this doesn't look like normal Java 🤦♂️ I don't really know where to go from here:
var config = new com.dropbox.core.DbxRequestConfig("dropbox/java-tutorial", "en_US");
var teamClient = new com.dropbox.core.v2.DbxTeamClientV2(config, accessToken);
var client = teamClient.asMember('my-id');
the TeamClient doesn't have the file access methods, but the individual Client always has it's root set to /MyName. How can I navigate paths with the JDK?