-
-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement reliable getLibraryFolder() and getDocumentsFolder() methods in MacPlatform #9
Comments
Created by: sampottinger There is an open issue at https://bugs.openjdk.java.net/browse/JDK-8187981 but it doesn't seem to be getting much traction. There is an alternative to System.getProperty but it's through swing:
See https://gist.github.com/sampottinger/49aef03638b150257cca919954319f01. It does work on 10.14 with a signed application. Open to suggestions but, unfortunately, JDK 11 isn't providing an alternative as far as I can tell? @benfry - would you like me to switch out for |
Created by: benfry I think Might be something we just need to add via JNA, since it should be a single OS call. |
Created by: sampottinger I agree. :( |
Created by: benfry Since this was originally posted, I've been hearing that using the name works, and the localization is handled transparently, perhaps suggesting that it's a more stable way to handle this than expected. macOS may do all sorts of “container” things behind the scenes, but it's maybe less of a concern than I originally thought. I don't love it, but this is at least a lower priority in that case. Also making a note in |
Created by: benfry
With the removal of
FileManager
in JDK 9+ we no longer have a means of getting theDocuments
andLibrary
folders on macOS.For now, it's possible to use
System.getProperty("user.home")
and tackLibrary
orDocuments
onto the end of that, however I'm guessing that it won't be possible in future OS releases, or perhaps even with a signed version of the app, due to security-related changes to how file system access works.(Appending these folder names works now even on localized systems, since the native language shown is not what's used internally by the OS.)
The text was updated successfully, but these errors were encountered: