sinkfaze wrote:
Assuming your zip is on the desktop:
Code:
Unz(A_Desktop "testzip.zip","C:\testzip")
return
Unz(sZip, sUnz)
{
fso := ComObjCreate("Scripting.FileSystemObject")
If !fso.FolderExists(sUnz)
fso.CreateFolder(sUnz)
ComObjCreate("Shell.Application").Namespace(sUnz).CopyHere(sZip "\*", 4|16)
}
im using ahk 1.0.48.05, am i missing something here? im trying to do this example of unzipping but I get call to nonexistent function, line 6 when i run it, its supposed to be stand alone?
I just want to unzip a folder of text files without a huge library to do zipping and all other stuff i dont need- does anyone know what i need to add to make this work?
thanks