| Maintainer | Brandon Chinn <brandonchinn178@gmail.com> |
|---|---|
| Stability | experimental |
| Portability | portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Codec.Archive.Tar.GZip
Description
Functions to create/extract compressed tar archives.
Documentation
Create a new .tar file from the given directory.
It is equivalent to calling the standard tar program like so:
$ tar -czf tarball.tar -C dir .
See create for more details.
Arguments
| :: FilePath | tar archive |
| -> FilePath | base directory |
| -> [FilePath] | files and paths to compress, relative to base directory |
| -> IO () |
Create a new .tar file from the given paths.
It is equivalent to calling the standard tar program like so:
$ tar -czf tarball.tar -C base paths
See create for more details.