2016-10-25 15:02:04 -04:00
|
|
|
|
using MediaBrowser.Common.IO;
|
2015-11-04 18:49:06 -05:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2016-10-25 15:02:04 -04:00
|
|
|
|
using MediaBrowser.Controller.IO;
|
|
|
|
|
|
using MediaBrowser.Model.IO;
|
2013-03-03 11:53:58 -05:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Resolvers
|
2013-02-20 20:33:05 -05:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Provides a base "rule" that anyone can use to have paths ignored by the resolver
|
|
|
|
|
|
/// </summary>
|
2013-03-03 01:58:04 -05:00
|
|
|
|
public interface IResolverIgnoreRule
|
2013-02-20 20:33:05 -05:00
|
|
|
|
{
|
2015-11-04 18:49:06 -05:00
|
|
|
|
bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent);
|
2013-02-20 20:33:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|