I have a question, I am new to C# and working with paths the first time 🙁
I am using the DotNetZip Library to zip my folder …when I try to save it it tries to save it to programfiles/iis and gives me an error saying no permission to save it to that location.. what do i do to save it to the same directory, can some one help 🙁
I am doing something like
using (ZipFile zip = new ZipFile())
{
zip.AddDirectory(Mypath);
zip.Save("zippedfolder.zip");
}
I know my question is pretty simple and straight forward but I dont know how to work with it.. can someone please help me ?? am I missing something??
PS: If my question is not clear let me know I can explain again
Thanks!
Save it to Mypath/zippedfolder.zip: