I would like to store some files in the application support directory is there some system call to retrieve this directory?
+2
A:
I think you will need to use something like this:
String applicationSupportDirectory = System.getProperty("user.home") + "/Library/Application Support";
stask
2009-11-10 19:58:57
I've had to resort to this approach. I believe there is no way to retrieve the whole application support path directly.
Steve McLeod
2009-11-10 21:58:43