using System;
using System.IO;
var filePath = "0/weds/testdelete.html";
try {
File.Delete(filePath);
Console.WriteLine("file deleted");
} catch (IOException e) {
Console.WriteLine(e.Message);
}