aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-11-04 10:10:05 -0400
committerGitHub <noreply@github.com>2016-11-04 10:10:05 -0400
commitca653f00e63b380629ce5d37fd6b9b92aa68d07a (patch)
tree0e6ee71a50bc2875b22300e5da2653405fb65960 /MediaBrowser.Model/IO
parent88a39a1c18fe4dc301c77e12a1f8b10a07435528 (diff)
parenta7b11c8ee952ca43fe949ab4f1b6577e94ce6bba (diff)
Merge pull request #2273 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Model/IO')
-rw-r--r--MediaBrowser.Model/IO/IFileSystem.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Model/IO/IFileSystem.cs b/MediaBrowser.Model/IO/IFileSystem.cs
index 50e32572d..ca537752a 100644
--- a/MediaBrowser.Model/IO/IFileSystem.cs
+++ b/MediaBrowser.Model/IO/IFileSystem.cs
@@ -276,6 +276,10 @@ namespace MediaBrowser.Model.IO
/// <returns>System.String.</returns>
string ReadAllText(string path, Encoding encoding);
+ string[] ReadAllLines(string path);
+
+ void WriteAllLines(string path, IEnumerable<string> lines);
+
/// <summary>
/// Gets the directory paths.
/// </summary>