GetFiles() for mono was missing initializing the Length

This commit is contained in:
Jim Westfall
2014-10-28 17:42:33 -07:00
parent 16ae35a8a1
commit e950b00a67

View File

@@ -193,6 +193,7 @@ namespace ROMVault2.IO
{
Name = tDi.Name,
FullName = Path.Combine(FullName, tDi.Name),
Length = tDi.Length,
LastWriteTime = tDi.LastWriteTimeUtc.Ticks
};
files.Add(lDi);