peteraritchie / LongPath

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

DirectoryInfo.FullName is missing #17

Closed am11 closed 9 years ago

am11 commented 9 years ago

While enumerating the directory, I came to realise that DirectoryInfo.FullName is missing and the closest one DirectoryInfo.FullPath (inherited) is marked as protected.

Please add .FullName property to the API.

peteraritchie commented 9 years ago

FullName is in the base FileSystemInfo and is public virtual, that's not working?

am11 commented 9 years ago

Ops its my silly mistake. I just checked in object browser and you are right, its in base class! We are actually using Pri.LongPath via reflection in MSBuildTask, uncommenting that line is chocking the compilation.

Sorry for the confusion. :)