Sample code for 30+ languages & platforms
Dart

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 Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  final gzip = CkGzip();

  try {
    gzip.uncompressFile('qa_data/tar/test.tgz', 'qa_output/test.tar');
    print('success.');
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
  }
}