Pozdrav, malo učim u WPF-u i sad trebam napraviti mogućnost ekstrakcije zip filea.
Code:
string zip = @"path_do_zipa";
string extract = @"temp_folder";
ZipFile.extracttodirectory(zip, extract);
dodao sam namespace System.IO.Compression ali i dalje ne mogu koristiti klasu ZipFile iako se nalazi u .NET 4.5, dobijem ovu grešku:
Code:
The name 'ZipFile' does not exist in the current context
Imate kakvu ideju?
EDIT: Trebao sam dodati dll reference, ova tema je nastala 3 minute prerano
