Exposing IcdFile.Create(path) method

This commit is contained in:
Chris Cameron
2018-01-26 10:53:11 -05:00
parent 250c8a354f
commit 60b4f76123

View File

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