peteraritchie / LongPath

drop-in library to support long paths in .NET
GNU Lesser General Public License v3.0
112 stars 43 forks source link

Directory.EnumerateFiles is missing overloads in .NET 4 #35

Closed nkraft closed 8 years ago

nkraft commented 8 years ago

Directory.EnumerateFiles(String, String) and Directory.EnumerateFiles(String, String, SearchOption) are excluded for .NET 4 but present for .NET 4.5. In the original System.IO API these overloads are available in .NET 4 (see https://msdn.microsoft.com/en-us/library/system.io.directory.enumeratefiles(v=vs.100).aspx)

FuchsiaSoft commented 8 years ago

Hi, I don't work on this repo but use it a lot... I had the same issue and resolution is here:

https://github.com/peteraritchie/LongPath/issues/33

peteraritchie commented 8 years ago

yes, fixed by #33

nkraft commented 8 years ago

Maybe I'm missing something here, but #33 and the associated fixing commit deal with missing functionality in .NET 4.5 projects. This issue relates to missing functionality in .NET 4 projects.

peteraritchie commented 8 years ago

Good catch @nkraft. I'm not sure how those got marked as 4.0-only. Looking into a fix

peteraritchie commented 8 years ago

fixed by 080aebe