I'm developing an application with C# and I'm trying to compress a few files from different locations into a zipped file.
My problem is that I want to have a different structure within this zip file than the structure from the files.
Example:
FileA -> example.zip: \DirX\DirY
FileB -> example.zip: \DirX\DirZ
FileC -> example.zip: \DirW
I can preserve the folder structure but not change the "destination" path. Is there any external tool or programmatically within .Net to achieve this?