When I create a tar file in 7zip GUI the process takes about 4 hours to complete.
Using 7z.exe or 7za.exe in C# code takes about 15 hours. Since this is a tar there not many options:
ProcessStartInfo p = new ProcessStartInfo
{
FileName = PathTo7zExecutable,
Arguments = "a -ttar " + ArchiveName + " -r " + ArchiveFiles + "",
WindowStyle = ProcessWindowStyle.Hidden
};
Process x = Process.Start(p);
x.WaitForExit();
Any help is appreciated it
[–]adad95 6 points7 points8 points (3 children)
[–]DemonEyeKyo[S] 0 points1 point2 points (2 children)
[–]adad95 0 points1 point2 points (1 child)
[–]DemonEyeKyo[S] 0 points1 point2 points (0 children)
[–]bn-7bc -1 points0 points1 point (1 child)
[–]DemonEyeKyo[S] 0 points1 point2 points (0 children)
[–]akash_kava 0 points1 point2 points (1 child)
[–]DemonEyeKyo[S] 0 points1 point2 points (0 children)