I need to write a file of type .QFS to android external SD card. I need mime type to use documentFile.createFile(mimeType, File name) command to create file.
Can anyone please help me with either mimeType or is there any other way to create a file in android version 5.0 and above in external sd card without using the DocumentFile.createFile command.
This blog says -
getExternalFilesDirs()
andgetExternalCacheDirs()
will return directories that we can use on “real” external storage.Add this in your activity for requesting runtime permission:
Or may be by removing and resetting the
sdcard write permission
in the Android manifest file.FYI: Unable to create file on removeable sdcard in Android 5.0.1 and How to access external memory in Android Lollipop and above
Also check this post.