Is there a generic way to get the default download...
# multiplatform
c
Is there a generic way to get the default download directory for all platform in kotlin kmp or java ?
🚫 1
a
In KMP, not as far as I'm aware. There's https://github.com/psuzn/multiplatform-paths, but it only gets the home and cache dirs. You could open a feature request. For JVM only there's https://github.com/harawata/appdirs and https://github.com/dirs-dev/directories-jvm (but watch out, directories-jvm requires JVM 22+).
c
👌