show/hide this revision's text 3 added 12 characters in body

Adding some sample code to Tim's answer:

using System.IO;

File.SetAttributes(filePath, FileAttributes.Normal);
File.Delete(filePath);
show/hide this revision's text 2 added text

Adding some sample code to Tim's answer:

using System.IO;

File.SetAttributes(filePath, FileAttributes.Normal);
File.Delete(filePath);
show/hide this revision's text 1
using System.IO;

File.SetAttributes(filePath, FileAttributes.Normal);
File.Delete(filePath);