I’m trying to unzip a File in my PostBuild Event from Visual Studio, but I get an error (Command ‘unzip’ ended with Code 50) evertime the command gets executed.
unzip -o "SourceFile.zip" -d "DestinationFolder"
If I run this command from a cmd it works fine.
I googled a bit and found out that Code 50 means either Disk full or insufficient rights.
But my harddrive has plenty of free space. Also I tried runing VS with Admin rights, but still Code 50.
So? Whats wrong with unzip?
Thx
I made a rar-File out of that zip and use unrar from the winrarfolder and everything works fine now. (But I’m still interested in the real answer.)