Package de.uplanet.io
Class TarHelper
java.lang.Object
de.uplanet.io.TarHelper
IOHelper class utility
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidtarDir(org.apache.commons.compress.archivers.tar.TarArchiveOutputStream p_tar, String p_strRootDir, File p_dirSrc, boolean p_bTarMarkedDirs, Set<File> p_filesToExclude) Deprecated.static voidtarDir(org.apache.commons.compress.archivers.tar.TarArchiveOutputStream p_tar, String p_strRootDir, Path p_dirSrc, boolean p_bTarMarkedDirs, DirectoryStream.Filter<Path> p_filter) Copy a directory recursively to a tar output stream.
p_destis the parent directory of the new directorystatic voidtarDir(org.apache.commons.compress.archivers.tar.TarArchiveOutputStream p_tar, String p_strRootDir, Path p_dirSrc, boolean p_bTarMarkedDirs, DirectoryStream.Filter<Path> p_filter, de.uplanet.util.Progress p_progress) Copy a directory recursively to a tar output stream.
p_destis the parent directory of the new directorystatic voidtarDir(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_destis the parent directory of the new directorystatic voidDeprecated.static booleanuntarDir(File p_fileArchive, String p_strFileNameEncoding, String p_strRootDir, File p_dirDst, de.uplanet.util.Progress p_progress) Deprecated.static booleanuntarDirectories(Path p_fileArchive, String p_strFileNameEncoding, Path p_dirDst, de.uplanet.util.Progress p_progress, boolean p_bExclusiveMode, String... p_rootDirs) Copy a directory recursively from a tar, tgz or tar.gz file.
p_dirDstis the parent directory of the new directory.static booleanuntarDirectories(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_dirDstis the parent directory of the new directory.
-
Constructor Details
-
TarHelper
public TarHelper()
-
-
Method Details
-
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_destis 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.
-
tarDir
public static void tarDir(org.apache.commons.compress.archivers.tar.TarArchiveOutputStream p_tar, String p_strRootDir, Path p_dirSrc, boolean p_bTarMarkedDirs, DirectoryStream.Filter<Path> p_filter) throws IOException Copy a directory recursively to a tar output stream.
p_destis 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_filter- 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.
-
tarDir
public static void tarDir(org.apache.commons.compress.archivers.tar.TarArchiveOutputStream p_tar, String p_strRootDir, Path p_dirSrc, boolean p_bTarMarkedDirs, DirectoryStream.Filter<Path> p_filter, de.uplanet.util.Progress p_progress) throws IOException Copy a directory recursively to a tar output stream.
p_destis 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_filter- files which are not exported parameter is set to false, the directory is exported as it would be empty.p_progress- The progress (could benull).- Throws:
IOException- If an I/O-error occurs.- Since:
- 11.9
-
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_dirDstis 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.
-
untarDirectories
public static boolean untarDirectories(Path p_fileArchive, String p_strFileNameEncoding, Path p_dirDst, de.uplanet.util.Progress p_progress, boolean p_bExclusiveMode, String... p_rootDirs) throws IOException Copy a directory recursively from a tar, tgz or tar.gz file.
p_dirDstis 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_bExclusiveMode- iftrueAll files/directories not in p_rootDirs will untared otherwise only files/directories set in p_rootDirs will be untared.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
-