remove file if exists c# code example Example: c# delete file if exists if(File.Exists(@"C:\test.txt")) { File.Delete(@"C:\test.txt"); }