Thanks for the tip.

I used AddDirectory, but it doesn't do anything.

Code:

  pjDir = FBDialog.SelectedPath

            If pjDir <> "" Then
                Using zip As ZipFile = New ZipFile
                    zip.AddDirectory(pjDir)
                    zip.Save("MyZipFile.zip")
                End Using
            End If