0

I am working on a personal project in java that will (in theory) use a file in dropbox for data storage and it will be edited across multiple computers and devices. However, these device will not necessariyl have the same file structure due to OS Differences (Linux, Win8, Win7). How would I get the location of the dropbox folder within the code in java? I looked online already and found this regarding doing this in python as well as a c# example linked in the python example, but am not sure how to apply that in java.

Community
  • 1
  • 1
soleluke
  • 13
  • 2

1 Answers1

0
 System.getProperty("user.home")+File.separator+"Dropbox";
durgas
  • 86
  • 3