Preventing File Locking in E-mail Attachment
Posted by Johan Cyprich on 28 Jan 2008 | Tagged as: Programming
I’m trying to attach a file to an e-mail that I’m sending using the SmtpClient class (from System.Net.Mail) using C# for ASP.NET. Everything works correctly, but the problem is that the file that was uploaded gets locked in the folder by Windows and I can’t delete it afterwards.
This is the code I used to attach [...]