fn create_tar_gz(
src: &Path,
dest_dir: &Path,
prefix: &str,
name: &str,
) -> Result<(usize, u64, PathBuf)>Expand description
Create a tar.gz archive containing all files from src that match a
filename predicate. Returns the path to the created archive.