I've created a new drop box app
and followed example to connect and upload directory and files
but the files and directories aren't visible to other users?
How to create the files so that other users I give the app to can connect and save and upload new files?
I'm using
var response = await client.Files.UploadAsync("/DotNetApi/" + subFolder + "/" + fileName, WriteMode.Overwrite.Instance, body: stream);
using (var response = await client.Files.DownloadAsync("/DotNetApi/" + szTemplate + "/" + file.Name))
which works on my computer
but when using another user computer says path not found
not sure how to setup the folder as shared ??
thanks