I have a file file.tar.gz
; how can I uncompress it with ruby to get the dir file?
on linux its easy to do this:
system("tar -xvzf file.tar.gz")
but is there any way to do this on windows with similar way or something else?
I have a file file.tar.gz
; how can I uncompress it with ruby to get the dir file?
on linux its easy to do this:
system("tar -xvzf file.tar.gz")
but is there any way to do this on windows with similar way or something else?