This is a GGified version of the Tar module for the LuaRocks project provided here - https://github.com/keplerproject/luarocks/blob/master/src/luarocks/tools/tar.lua
local GGTar = require( "GGTar" )
local tar = GGTar:new()
local onComplete = function()
print( "All done!" )
end
tar:untar( "level1.tar", system.DocumentsDirectory, system.TemporaryDirectory, onComplete )
tar:destroy()
Initial release