I am creating a windows forms application which will parse the compressed files. I am getting an exception
System.IO.PathTooLongException upon debugging the files that were being parsed and extracted have their fully qualified name over 259 characters. One of the posts here mentioned about Zeta Long Paths.
I have downloaded it via Nuget package and using it in my project.
ZlpIOHelper can be used to perform file handling function.
I went through the reference via object explorer and couldn't determine how to create a FileSteam using Zeta Long Paths.
FileStream fs = File.OpenRead(archiveFilenameIn);
Stream inStream = File.OpenRead(gzArchiveName);
Stream gzipStream = new GZipInputStream(inStream);
How can the above functions be implemented using Zeta Long Paths? Or any other packages?
Not a duplicate question. .NET Version is 4.0 and long path package specific.