Extension method for getting the creation time of an assembly

This commit is contained in:
Chris Cameron
2017-11-17 12:20:25 -05:00
parent 546cabf0b4
commit 772a87bab6
2 changed files with 21 additions and 1 deletions

View File

@@ -77,5 +77,11 @@ namespace ICD.Common.Utils.IO
{
return new IcdFileStream(File.Open(path, mode));
}
[PublicAPI]
public static DateTime GetCreationTime(string path)
{
return File.GetCreationTime(path);
}
}
}