using System.IO; namespace Abp.IO { /// /// A helper class for File operations. /// public static class FileHelper { /// /// Checks and deletes given file if it does exists. /// /// Path of the file public static void DeleteIfExists(string filePath) { if (File.Exists(filePath)) { File.Delete(filePath); } } } }