move classes

This commit is contained in:
Luke Pulverenti
2016-11-04 04:43:59 -04:00
parent 6d250c4050
commit 67ffbed93e
8 changed files with 67 additions and 47 deletions

View File

@@ -641,6 +641,16 @@ namespace Emby.Common.Implementations.IO
}).Where(i => i != null);
}
public string[] ReadAllLines(string path)
{
return File.ReadAllLines(path);
}
public void WriteAllLines(string path, IEnumerable<string> lines)
{
File.WriteAllLines(path, lines);
}
public Stream OpenRead(string path)
{
return File.OpenRead(path);