Package de.uplanet.io
Class TarHelper
- java.lang.Object
-
- de.uplanet.io.TarHelper
-
@Scriptable public final class TarHelper extends Object
IOHelper class utility
-
-
Constructor Summary
Constructors Constructor Description TarHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static void
tarDir(org.apache.commons.compress.archivers.tar.TarArchiveOutputStream p_tar, String p_strRootDir, File p_dirSrc, boolean p_bTarMarkedDirs, Set<File> p_filesToExclude)
Deprecated.static void
tarDir(org.apache.commons.compress.archivers.tar.TarArchiveOutputStream p_tar, String p_strRootDir, Path p_dirSrc, boolean p_bTarMarkedDirs, Set<Path> p_filesToExclude)
Copy a directory recursively to a tar output stream.
p_dest
is the parent directory of the new directorystatic void
untarDir(File p_fileArchive, String p_strFileNameEncoding, String p_strRootDir, File p_dirDst)
Deprecated.static boolean
untarDir(File p_fileArchive, String p_strFileNameEncoding, String p_strRootDir, File p_dirDst, de.uplanet.util.Progress p_progress)
Deprecated.static boolean
untarDirectories(Path p_fileArchive, String p_strFileNameEncoding, Path p_dirDst, de.uplanet.util.Progress p_progress, String... p_rootDirs)
Copy a directory recursively from a tar, tgz or tar.gz file.
p_dirDst
is the parent directory of the new directory.
-
-
-
Method Detail
-
tarDir
public static void tarDir(org.apache.commons.compress.archivers.tar.TarArchiveOutputStream p_tar, String p_strRootDir, Path p_dirSrc, boolean p_bTarMarkedDirs, Set<Path> p_filesToExclude) throws IOException
Copy a directory recursively to a tar output stream.
p_dest
is the parent directory of the new directory- Parameters:
p_tar
- tar output streamp_strRootDir
- root dir for the added files, or null, if top levelp_dirSrc
- directory to copyp_bTarMarkedDirs
- zips directories, event if they are marked with a ".noexport" file. If this parameter is set to false, the destination directory entry is created with a .noxexport entry as the only content.p_filesToExclude
- files which are not exported parameter is set to false, the directory is exported as it would be empty.- Throws:
IOException
- If an I/O-error occurs.
-
untarDirectories
public static boolean untarDirectories(Path p_fileArchive, String p_strFileNameEncoding, Path p_dirDst, de.uplanet.util.Progress p_progress, String... p_rootDirs) throws IOException
Copy a directory recursively from a tar, tgz or tar.gz file.
p_dirDst
is the parent directory of the new directory. If p_progess is null the extraction will be faster, because we not need to calculate the numbers of files, for returning a progress.- Parameters:
p_fileArchive
- The file to be untared.p_strFileNameEncoding
- encoding used for file names in tar archivep_dirDst
- The destination directory.p_progress
- The progress callback to be used. May benull
.p_rootDirs
- The root dirs of the files in the archive, ornull
, if top level.- Returns:
- true, if this method created any files or directories, false otherwise
- Throws:
IOException
- If an I/O-error occurs.
-
tarDir
@Deprecated public static void tarDir(org.apache.commons.compress.archivers.tar.TarArchiveOutputStream p_tar, String p_strRootDir, File p_dirSrc, boolean p_bTarMarkedDirs, Set<File> p_filesToExclude) throws IOException
Deprecated.- Throws:
IOException
-
untarDir
@Deprecated public static void untarDir(File p_fileArchive, String p_strFileNameEncoding, String p_strRootDir, File p_dirDst) throws IOException
Deprecated.- Throws:
IOException
-
untarDir
@Deprecated public static boolean untarDir(File p_fileArchive, String p_strFileNameEncoding, String p_strRootDir, File p_dirDst, de.uplanet.util.Progress p_progress) throws IOException
Deprecated.- Throws:
IOException
-
-