extractArchiveToDiskSync function

void extractArchiveToDiskSync(
  1. Archive archive,
  2. String outputPath, {
  3. int? bufferSize,
})

Implementation

void extractArchiveToDiskSync(
  Archive archive,
  String outputPath, {
  int? bufferSize,
}) {
  _prepareOutDir(outputPath);
  for (final entry in archive) {
    final filePath = _prepareArchiveFilePath(entry, outputPath);
    if (filePath != null) {
      _extractArchiveEntryToDiskSync(entry, filePath, bufferSize: bufferSize);
    }
  }
}