With below code I am generating a zip file name = result.zip. Is this possible to prevent re-naming this file. User should not be able to re-name this file.
string startPath = @"C:\TEMP\PS";//folder to add
string zipPath = @"C:\TEMP\result.zip";//ZIP file path
ZipFile.CreateFromDirectory(startPath, zipPath, CompressionLevel.Fastest, true);