如何在C#中创建tar.gz文件




我试过SevenZipLib和SevenZipSharp,但都没有成功。有人能给我一个使用任何免费库将文本文件归档到tar.gz的工作示例吗
我知道这不是拉拉链的最佳方式,但这是我的要求。

也许NuGet中最流行的支持TAR的包是SharpZipLib。它的wiki包括使用tar.gz文件的示例,包括创建。链接的示例归档整个文件夹。

要归档单个文件,可以将示例简化为:

private void CreateTarGZ(string tgzFilename, string fileName)
{
    using (var outStream = File.Create(tgzFilename))
    using (var gzoStream = new GZipOutputStream(outStream))
    using (var tarArchive = TarArchive.CreateOutputTarArchive(gzoStream))
    {
        tarArchive.RootPath = Path.GetDirectoryName(fileName);
        var tarEntry = TarEntry.CreateEntryFromFile(fileName);
        tarEntry.Name = Path.GetFileName(fileName);
        tarArchive.WriteEntry(tarEntry,true);
    }
}

本质上,您需要为要存储的每个文件夹和文件创建一个TarEntry

不喜欢SharpZipLib提供的关于如何压缩目录的示例,因为他们的方法不是将文件夹结构保留在要转换为.tgz的目录中,而是复制指向要压缩的任何目录的文件夹路径。

例如:

如果您试图用一个名为foo.c的文件压缩folderA(位于://filer/folder1/folderA(,那么在将folderA转换为.tgz之后,.tgz文件中指向foo.c的路径将为:

folderA.tgz/filer/folder1/foo.c

这个解决方案省略了.tgz中的额外文件,结果是:

folderA.tgz/foo.c

using ICSharpCode.SharpZipLib.GZip;
using ICSharpCode.SharpZipLib.Tar;
using ICSharpCode.SharpZipLib.Zip;
using System.IO;
/// <summary>
/// Creates a .tgz file using everything in the sourceDirectory. The .tgz file will be titled {tgzFileName}.tgz and will be located in targetDirectory.
/// </summary>
/// <param name="sourceDirectory">Directory to compress into a .tgz</param>
/// <param name="tgzFileName">Name of .tgz file</param>
/// <param name="targetDirectory">Directory where {tgzFileName}.tgz should be located.</param>
/// <param name="deleteSourceDirectoryUponCompletion">Will delete sourceDirectory if <see langword="true"/></param>
/// <returns>Path to .tgz file</returns>
public string CreateTGZ(string sourceDirectory, string tgzFileName, string targetDirectory, bool deleteSourceDirectoryUponCompletion = false)
{
    if (!tgzFileName.EndsWith(".tgz"))
    {
        tgzFileName = tgzFileName + ".tgz";
    }
    using (var outStream = File.Create(Path.Combine(targetDirectory, tgzFileName)))
    using (var gzoStream = new GZipOutputStream(outStream))
    {
        var tarArchive = TarArchive.CreateOutputTarArchive(gzoStream);
        // Note that the RootPath is currently case sensitive and must be forward slashes e.g. "c:/temp"
        // and must not end with a slash, otherwise cuts off first char of filename
        tarArchive.RootPath = sourceDirectory.Replace('\', '/');
        if (tarArchive.RootPath.EndsWith("/"))
        {
            tarArchive.RootPath = tarArchive.RootPath.Remove(tarArchive.RootPath.Length - 1);
        }
        AddDirectoryFilesToTGZ(tarArchive, sourceDirectory);
        if (deleteSourceDirectoryUponCompletion)
        {
            File.Delete(sourceDirectory);
        }
        var tgzPath = (tarArchive.RootPath + ".tgz").Replace('/', '\');
        tarArchive.Close();
        return tgzPath;
    }
}
private void AddDirectoryFilesToTGZ(TarArchive tarArchive, string sourceDirectory)
{
    AddDirectoryFilesToTGZ(tarArchive, sourceDirectory, string.Empty);
}
private void AddDirectoryFilesToTGZ(TarArchive tarArchive, string sourceDirectory, string currentDirectory)
{
    var pathToCurrentDirectory = Path.Combine(sourceDirectory, currentDirectory);
    // Write each file to the tgz.
    var filePaths = Directory.GetFiles(pathToCurrentDirectory);
    foreach (string filePath in filePaths)
    {
        var tarEntry = TarEntry.CreateEntryFromFile(filePath);
        // Name sets where the file is written. Write it in the same spot it exists in the source directory
        tarEntry.Name = filePath.Replace(sourceDirectory, "");
        // If the Name starts with '' then an extra folder (with a blank name) will be created, we don't want that.
        if (tarEntry.Name.StartsWith('\'))
        {
            tarEntry.Name = tarEntry.Name.Substring(1);
        }
        tarArchive.WriteEntry(tarEntry, true);
    }
    // Write directories to tgz
    var directories = Directory.GetDirectories(pathToCurrentDirectory);
    foreach (string directory in directories)
    {
        AddDirectoryFilesToTGZ(tarArchive, sourceDirectory, directory);
    }
}

以下解决方案也可以工作:如何在C#中创建Tar GZipped文件

我还没有测试过它,因为我毕竟不会使用tar.gz文件,但看起来很彻底,人们说它有效。

相关内容

  • 没有找到相关文章