Skip to content

0.3.0

Compare
Choose a tag to compare
@tobozo tobozo released this 10 Jan 15:42
· 156 commits to master since this release
cba7262

New decompression modes:

tarGzExpander

It is no longer required to use an intermediate file with tarGzExpander.

// this will use an intermediate file (defaulting to /tmp/tmp.tar)
tarGzExpander(tarGzFS, "/blah.tat.gz", tarGzFS, "/tmp" );

// this will use an intermediate file too
tarGzExpander(tarGzFS, "/blah.tat.gz", tarGzFS, "/tmp", "/tmp/my_temporary_file.tar" ); 

// this will do a direct gz->tar->filesystem expanding, using no intermediate file
tarGzExpander(tarGzFS, fileJustBigEnoughForSPIFFS, tarGzFS, "/tmp", nullptr );