From 60b4f76123e16e9f74ea046d754a477763196180 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Fri, 26 Jan 2018 10:53:11 -0500 Subject: [PATCH] Exposing IcdFile.Create(path) method --- ICD.Common.Utils/IO/IcdFile.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ICD.Common.Utils/IO/IcdFile.cs b/ICD.Common.Utils/IO/IcdFile.cs index 7c8bdc0..0b90670 100644 --- a/ICD.Common.Utils/IO/IcdFile.cs +++ b/ICD.Common.Utils/IO/IcdFile.cs @@ -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)); + } } }