I need to store some data in my Blackberry application so i'm using files,i'm storing these files in the internal memory of the device , but if i uninstalled the application i need these files to be removed too. Is there a way to store the files in the same path of the application package , or any other way to delete them if the application was uninstalled?
This is the path which i'm using:
try {
fileconn = (FileConnection) Connector.open("file:///store/home/user/data.txt");
}
