I am extracting a zip file like this
ZipFile.ExtractToDirectory(zipFile, extractTo);
But I am getting a
{"Could not find a part of the path 'C:\\....many subfolders\\Extremely long filename'."}
The zip file contains a file with a very long path and filename c.a. 280 chars in total. I am not sure if that is the problem I enabled long path as demonstrated here https://blogs.msdn.microsoft.com/jeremykuhne/2016/07/30/net-4-6-2-and-long-paths-on-windows-10/
If I open the path in explorer it opens but the file with the long filename is not there. If I open the zip file the file is there so there seems to be a problem extracting file with long filename.
Is it possible to skip a file during the zip extraction or allowing extracting files with long filenames?