Sample code for 30+ languages & platforms
Go Requires Chilkat v11.0.0+

Transition from Zip.FirstMatchingEntry to Zip.EntryMatching

Provides instructions for replacing deprecated FirstMatchingEntry method calls with EntryMatching.

Chilkat Go Downloads

Go
    success := false

    zip := chilkat.NewZip()

    //  ...
    //  ...
    pattern := "*.txt"

    //  ------------------------------------------------------------------------
    //  The FirstMatchingEntry method is deprecated:

    entryObj := zip.FirstMatchingEntry(pattern)
    if zip.LastMethodSuccess() == false {
        fmt.Println(zip.LastErrorText())
        zip.DisposeZip()
        return
    }

    //  ...
    //  ...

    entryObj.DisposeZipEntry()

    //  ------------------------------------------------------------------------
    //  Do the equivalent using EntryMatching.
    //  Your application creates a new, empty ZipEntry object which is passed 
    //  in the last argument and filled upon success.

    ze := chilkat.NewZipEntry()
    success = zip.EntryMatching(pattern,ze)
    if success == false {
        fmt.Println(zip.LastErrorText())
        zip.DisposeZip()
        ze.DisposeZipEntry()
        return
    }


    zip.DisposeZip()
    ze.DisposeZipEntry()