How to delete a file from folder in C#
How to delete a file from folder via code in C# ?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ankit NandekarPosted May 9, 2011, 7:58 AM
File.Delete(path of file);
Note : use namespace
using System.IO;
VulpesPosted May 9, 2011, 7:23 AM