Sample code for 30+ languages & platforms
Swift

UnGzip .tgz to get a .tar

See more Tar Archive Examples

A .tgz is simply a TAR archive compressed using GZip. It is also commonly referred to as a .tar.gz. Chilkat GZip can be used to ungzip to get an uncompressed .tar.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

    let gzip = CkoGzip()!

    success = gzip.uncompressFile(srcPath: "qa_data/tar/test.tgz", destPath: "qa_output/test.tar")
    if success != true {
        print("\(gzip.lastErrorText!)")
    }
    else {
        print("success.")
    }


}