I've got a little Android app written for a friend (nothing complex, just extracts data from his phone into a CSV) that works fine, except the output file gets written to the directory returned by getExternalFilesDir()
, which is rather deep in the file system for an average user to get hold of.
When I plug my phone into my laptop/PC via USB, it mounts as an external drive. Is there a way for my app to write to that directory?
Thanks