Is that possible to remove a folder
with its content
when users click on uninstall
button of our application ?
I did something like bellow, but after uninstalling the app the tempfolder
exists.
import FileSystem from "react-native-fs";const tempfolder = FileSystem.ExternalStorageDirectoryPath +'/tempfolder';if (!(await FileSystem.exists(tempfolder))) await FileSystem.mkdir(tempfolder);
Any help ?