| 1234567891011121314151617181920212223242526272829303132333435363738394041 | 
							- using MediaBrowser.Common.IO;
 
- using MediaBrowser.Controller;
 
- using System;
 
- using System.IO;
 
- using System.Linq;
 
- using CommonIO;
 
- namespace MediaBrowser.Server.Startup.Common.Migrations
 
- {
 
-     public class MigrateUserFolders : IVersionMigration
 
-     {
 
-         private readonly IServerApplicationPaths _appPaths;
 
-         private readonly IFileSystem _fileSystem;
 
-         public MigrateUserFolders(IServerApplicationPaths appPaths, IFileSystem fileSystem)
 
-         {
 
-             _appPaths = appPaths;
 
-             _fileSystem = fileSystem;
 
-         }
 
-         public void Run()
 
-         {
 
-             try
 
-             {
 
-                 var rootPath = _appPaths.RootFolderPath;
 
- 				var folders = _fileSystem.GetDirectories(rootPath)
 
- 					.Where(i => !string.Equals(i.Name, "default", StringComparison.OrdinalIgnoreCase))
 
-                     .ToList();
 
-                 foreach (var folder in folders)
 
-                 {
 
-                     _fileSystem.DeleteDirectory(folder.FullName, true);
 
-                 }
 
-             }
 
-             catch (IOException)
 
-             {
 
-             }
 
-         }
 
-     }
 
- }
 
 
  |