tags:

views:

42

answers:

1

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
I've had to resort to this approach. I believe there is no way to retrieve the whole application support path directly.
Steve McLeod