mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 12:07:05 +00:00
feat: Exposing OpenRead method in IcdFile
This commit is contained in:
parent
e4b0c9f91a
commit
da31fae213
1 changed files with 5 additions and 0 deletions
|
|
@ -66,6 +66,11 @@ namespace ICD.Common.Utils.IO
|
|||
File.Delete(path);
|
||||
}
|
||||
|
||||
public static IcdStream OpenRead(string path)
|
||||
{
|
||||
return new IcdFileStream(File.OpenRead(path));
|
||||
}
|
||||
|
||||
[PublicAPI]
|
||||
public static IcdFileStream OpenWrite(string path)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue