You have to loop through each zip file and unzip them.
Code:
For Each file In IO.Directory.GetFiles(Label1.Text, "*.zip")
    UnzipArchive(file, Label2.Text)
Next