diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-13 23:00:13 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-13 23:00:13 -0500 |
| commit | a4b40ad9d90a40cd5e35bb7b9c43ad436e992cd4 (patch) | |
| tree | 84a697bf606b293c3e74d7757b28d3bb40d1d269 /MediaBrowser.Common/IO/IFileSystem.cs | |
| parent | 58a46171ababb816636a65aa7f76c00de50f598f (diff) | |
handle year in name when searching
Diffstat (limited to 'MediaBrowser.Common/IO/IFileSystem.cs')
| -rw-r--r-- | MediaBrowser.Common/IO/IFileSystem.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Common/IO/IFileSystem.cs b/MediaBrowser.Common/IO/IFileSystem.cs index f721e80ea..de9b7e88a 100644 --- a/MediaBrowser.Common/IO/IFileSystem.cs +++ b/MediaBrowser.Common/IO/IFileSystem.cs @@ -103,5 +103,14 @@ namespace MediaBrowser.Common.IO /// <param name="path">The path.</param> /// <returns>System.String.</returns> string NormalizePath(string path); + + /// <summary> + /// Substitutes the path. + /// </summary> + /// <param name="path">The path.</param> + /// <param name="from">From.</param> + /// <param name="to">To.</param> + /// <returns>System.String.</returns> + string SubstitutePath(string path, string from, string to); } } |
