When and How to Delete temporary uploaded but uncommitted files in ASP.NET
Posted
by slowlycooked
on Stack Overflow
See other posts from Stack Overflow
or by slowlycooked
Published on 2010-05-04T08:29:58Z
Indexed on
2010/05/04
8:38 UTC
Read the original article
Hit count: 201
ASP.NET
|fileupload
I'm using EO Ajax toolkits for upload files, the file is uploaded to server. when user click save then it will update the database for what been uploaded or changed. Now i need a clean up process that when user uploaded a file to server, but then close his/her browser before click the save button. in this case how should i programe so that the file user just uploaded is deleted, because it's now useless and not assosiated with any database.
thanks.
- maybe i should upload all files to a temp folder, only when user click saver the file can be moved to target folder, at each session end the temp folder is get deleted.
© Stack Overflow or respective owner