How to delete a file, given the full path to the file?
You want File.Delete .
File.Delete(@"C:\Documents and Settings\Vijay.EKO-03\Desktop\blockseek3-9-2010\Block3.xml");
var file = new System.IO.File(path); file.Delete();
File.Delete(string path) the method will work, I think.
File.Delete(string path)
Basically, you can just call the static delete method on the file class.
System.IO.File.Delete(@"C:\Documents and Settings\Vijay.EKO-03\Desktop\blockseek3-9-2010\Block3.xml");
Have you tried this ??? I think this will solve your problems:
FileInfo i = new FileInfo("PATH TO YOUR FILE"); i.Delete();
Note:
using System.IO;