I am kinda new to C# and visual studio. I try to unzip a zip and overwrite files if they already exist with the following function:
using System.IO;
using System.IO.Compression;
ZipFile.ExtractToDirectory(gameZip, rootPath, true);
But it wont accept a bool argument as it should be if i can trust this document: (https://github.com/dotnet/runtime/blob/main/src/libraries/System.IO.Compression.ZipFile/src/System/IO/Compression/ZipFile.Extract.cs#L188)
Looking into the package i am using it seems like it is not supported this way, but i use the same package:
public static void ExtractToDirectory(string sourceArchiveFileName, string destinationDirectoryName)
{
ExtractToDirectory(sourceArchiveFileName, destinationDirectoryName, null);
}
public static void ExtractToDirectory(string sourceArchiveFileName, string destinationDirectoryName, Encoding entryNameEncoding)
{
if (sourceArchiveFileName == null)
{
throw new ArgumentNullException("sourceArchiveFileName");
}
using ZipArchive source = Open(sourceArchiveFileName, ZipArchiveMode.Read, entryNameEncoding);
source.ExtractToDirectory(destinationDirectoryName);
}
So my question is, Why do i have a different version even tho i installed packages from microsoft over the NuGet Package installer: System.IO.Compression.ZipFile and System.IO.Compression (4.3.0) (.NET Framework 4.8)
I tried to find my way through this labyrinth of packages but after 2 days of being stuck at such a simple task just made me post my first question here in Stackoverflow. I hope someone can help me. :D
I tried to extract a zip and set the overwrite boolean to "true" so it overwrite existing files.