You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to fix:
file
SevenZipCompressor.cs
function
private static int CommonRoot(ICollection files)
add at end of function
else if (files.Count == 1)
{
foreach (string path in files)
res = Path.GetDirectoryName(path);
}
return res.Length;