According to File.Delete’s documentation,, you’ll have to strip the read-only attribute. You can set the file’s attributes using File.SetAttributes().
using System.IO;
File.SetAttributes(filePath, FileAttributes.Normal);
File.Delete(filePath);
According to File.Delete’s documentation,, you’ll have to strip the read-only attribute. You can set the file’s attributes using File.SetAttributes().
using System.IO;
File.SetAttributes(filePath, FileAttributes.Normal);
File.Delete(filePath);