1234567891011121314151617181920212223242526272829303132333435 |
- using MediaBrowser.Common.IO;
- using MediaBrowser.Controller;
- using System.IO;
- namespace MediaBrowser.Server.Startup.Common.Migrations
- {
- public class DeprecatePlugins : IVersionMigration
- {
- private readonly IServerApplicationPaths _appPaths;
- private readonly IFileSystem _fileSystem;
- public DeprecatePlugins(IServerApplicationPaths appPaths, IFileSystem fileSystem)
- {
- _appPaths = appPaths;
- _fileSystem = fileSystem;
- }
- public void Run()
- {
- RemovePlugin("MediaBrowser.Plugins.LocalTrailers.dll");
- }
- private void RemovePlugin(string filename)
- {
- try
- {
- _fileSystem.DeleteFile(Path.Combine(_appPaths.PluginsPath, filename));
- }
- catch
- {
-
- }
- }
- }
- }
|