jellyfin/Emby.Naming/Video/FileStack.cs

31 lines
653 B
C#
Raw Normal View History

using System;
2018-09-12 19:26:21 +02:00
using System.Collections.Generic;
using System.Linq;
namespace Emby.Naming.Video
{
public class FileStack
{
public FileStack()
{
Files = new List<string>();
}
2020-11-01 10:47:31 +01:00
public string Name { get; set; } = string.Empty;
public List<string> Files { get; set; }
public bool IsDirectoryStack { get; set; }
2019-05-10 20:37:42 +02:00
public bool ContainsFile(string file, bool isDirectory)
2018-09-12 19:26:21 +02:00
{
2019-05-10 20:37:42 +02:00
if (IsDirectoryStack == isDirectory)
2018-09-12 19:26:21 +02:00
{
return Files.Contains(file, StringComparer.OrdinalIgnoreCase);
}
return false;
}
}
}