I\'m trying to delete a temporary file after sharing it via android\'s Intent.ACTION_SEND feature. Right now I am starting the activity for a result and in OnActivityResult,
I have managed to get it to work with:
File tbd = new File(sharePath); tbd.deleteOnExit();
This seems to delete the file when the activity closes.