Finding an OSX application support directory in java

I would like to save some files in the application support directory, is there any system call to retrieve this directory?

+6
java macos
source share
1 answer

I think you will need to use something like this:

String applicationSupportDirectory = System.getProperty("user.home") + "/Library/Application Support"; 
+8
source share

All Articles