aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/IO/IFileSystem.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-09-18 13:50:24 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-09-18 13:50:24 -0400
commitaff7309a08b01d7eae24d140f55d36898b49d3df (patch)
tree37bf5963b1e05b45edf9e513d096b747c17c8c9a /MediaBrowser.Common/IO/IFileSystem.cs
parent5340bfe8da879ba2503cb675e6724ce33b754ae3 (diff)
update ffmpeg with qsv-compatible version
Diffstat (limited to 'MediaBrowser.Common/IO/IFileSystem.cs')
-rw-r--r--MediaBrowser.Common/IO/IFileSystem.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Common/IO/IFileSystem.cs b/MediaBrowser.Common/IO/IFileSystem.cs
index 1feb20dcb..ce15ad999 100644
--- a/MediaBrowser.Common/IO/IFileSystem.cs
+++ b/MediaBrowser.Common/IO/IFileSystem.cs
@@ -176,5 +176,11 @@ namespace MediaBrowser.Common.IO
void WriteAllText(string path, string text, Encoding encoding);
string ReadAllText(string path, Encoding encoding);
+
+ IEnumerable<string> GetDirectoryPaths(string path, bool recursive = false);
+
+ IEnumerable<string> GetFilePaths(string path, bool recursive = false);
+
+ IEnumerable<string> GetFileSystemEntryPaths(string path, bool recursive = false);
}
}