Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WriteFile vs TransmitFile for large files that need to be deleted from the server after transfer

I have to trigger user downloads of large files to a webbrowser, where I create the file to transfer on the server, then delete it immediately afterwards. I've found enough examples to see that I should probably use Response.TransmitFile or Response.WriteFile... but have heard there are problems with both:

WriteFile is synchronous, but it buffers the file in memory before sending it to the user. Since I'm dealing with very large files, this could cause problems.

TransmitFile doesn't buffer locally so it does work for large files, but it is asynchronous, so I can't delete the file after calling TransmitFile. Apparently flushing the file doesn't guarantee that I can delete it either?

What is the best way of dealing with this?

There is the BinaryWrite also... could I loop through a file stream, copying it in segments?

like image 465
tbischel Avatar asked Feb 02 '10 20:02

tbischel


2 Answers

Here's a good solution which uses TransmitFile but allows you to do something once it's done using a delegate:

http://improve.dk/blog/2008/03/29/response-transmitfile-close-will-kill-your-application

Just replace the logging at the end with file deletion.

like image 118
Keith Adler Avatar answered Nov 14 '22 23:11

Keith Adler


WriteFile is synchronous, but it buffers the file in memory before sending it to the user. Since I'm dealing with very large files, this could cause problems.

I believe you can disable the buffering to WriteFile by setting Response.BufferOutput = false;

Once this has been set to false you should be able to call WriteFile without buffering...

like image 22
Peter Avatar answered Nov 14 '22 22:11

Peter