peteraritchie / LongPath

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

All date properties on DirectoryInfo fail if the path ends with a backslash #21

Closed thomaslevesque closed 9 years ago

thomaslevesque commented 9 years ago
new DirectoryInfo(@"D:\tmp").LastWriteTimeUtc.Dump(); // OK
new DirectoryInfo(@"D:\tmp\").LastWriteTimeUtc.Dump(); // FileNotFoundException

This might be related to #18