aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/IO/FileSystem.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-27 20:44:38 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-27 20:44:38 -0400
commit90bb3d46c416676105d5cf89d12279b3f7ccb944 (patch)
tree513abf9caa18fa206ec8b7a582bdf9fe4ae24425 /MediaBrowser.Controller/IO/FileSystem.cs
parente7443027090fd874f2c9a733eaf23bc43d6dd291 (diff)
#200 - MB3 Locking Folders for a long time
Diffstat (limited to 'MediaBrowser.Controller/IO/FileSystem.cs')
-rw-r--r--MediaBrowser.Controller/IO/FileSystem.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/MediaBrowser.Controller/IO/FileSystem.cs b/MediaBrowser.Controller/IO/FileSystem.cs
index 28deca100..7b031744e 100644
--- a/MediaBrowser.Controller/IO/FileSystem.cs
+++ b/MediaBrowser.Controller/IO/FileSystem.cs
@@ -79,16 +79,6 @@ namespace MediaBrowser.Controller.IO
}
/// <summary>
- /// Gets all sub-directories within a folder
- /// </summary>
- /// <param name="path">The path.</param>
- /// <returns>IEnumerable{WIN32_FIND_DATA}.</returns>
- public static IEnumerable<WIN32_FIND_DATA> GetDirectories(string path)
- {
- return GetFileSystemEntries(path, includeFiles: false);
- }
-
- /// <summary>
/// Gets all file system entries within a foler
/// </summary>
/// <param name="path">The path.</param>