How to delete folders from SDCard during uninstalling of my app in Android?

后端 未结 4 1867
猫巷女王i
猫巷女王i 2021-01-18 21:01

I went through the following link which says that the external folders will be deleted automatically during uninstallation of my app.

I am using the following code t

4条回答
  •  -上瘾入骨i
    2021-01-18 21:11

    Save it in your Apps Private Folder (/data/data/yourappPackege). This folder will be removed when uninstalling the App.
    You can get your private Folder with the Method getFilesDir() Other files can not be removed because your App does not "know" when it is being removed.

提交回复
热议问题