I want to delete a file immediately after download, how do I do it? I’ve tried to subclass FilePathResult and override the WriteFile method where I delete file after
HttpResponseBase.TransmitFile
is called, but this hangs the application.
Can I safely delete a file after user downloads it?
You could create a custom actionfilter for the action with an OnActionExecuted Method that would then remove the file after the action was completed, something like
then your action has