I want to delete a zip folder if it is exists. I have below code.
string zippath = @"C:\Neenu\Downloads.zip";
ZipFile.CreateFromDirectory(@"" + TemporaryFolder, @"" + zippath);
Just before the above code I want to check if folder exists or not. If exists I want to delete folder.