how to create a folder in android External Storage Directory?

后端 未结 8 1255
耶瑟儿~
耶瑟儿~ 2020-12-01 04:39

I cannot create a folder in android External Storage Directory.

I have added permissing on manifest,



        
8条回答
  •  生来不讨喜
    2020-12-01 04:50

    Try adding

    FPath.mkdirs(); (See http://developer.android.com/reference/java/io/File.html)

    and then just save the file as needed to that path, Android OS will create all the directories needed. You don't need to do the exists checks, just set that flag and save. (Also see : How to create directory automatically on SD card

提交回复
热议问题