123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.IO;
- using Newtonsoft.Json;
- namespace MediaBrowser.Model.Entities
- {
- public class Folder : BaseItem
- {
- public bool IsRoot { get; set; }
- public bool IsVirtualFolder
- {
- get
- {
- return Parent != null && Parent.IsRoot;
- }
- }
- [JsonIgnore]
- public BaseItem[] Children { get; set; }
- [JsonIgnore]
- public IEnumerable<Folder> FolderChildren { get { return Children.OfType<Folder>(); } }
- public Folder GetFolderByName(string name)
- {
- return FolderChildren.FirstOrDefault(f => System.IO.Path.GetFileName(f.Path).Equals(name, StringComparison.OrdinalIgnoreCase));
- }
- /// <summary>
- /// Finds an item by ID, recursively
- /// </summary>
- public BaseItem FindById(Guid id)
- {
- if (Id == id)
- {
- return this;
- }
- foreach (BaseItem item in Children)
- {
- if (item.Id == id)
- {
- return item;
- }
- }
- foreach (Folder folder in FolderChildren)
- {
- BaseItem item = folder.FindById(id);
- if (item != null)
- {
- return item;
- }
- }
- return null;
- }
- /// <summary>
- /// Finds an item by path, recursively
- /// </summary>
- public BaseItem FindByPath(string path)
- {
- if (Path.Equals(path, StringComparison.OrdinalIgnoreCase))
- {
- return this;
- }
- foreach (BaseItem item in Children)
- {
- if (item.Path.Equals(path, StringComparison.OrdinalIgnoreCase))
- {
- return item;
- }
- }
- foreach (Folder folder in FolderChildren)
- {
- BaseItem item = folder.FindByPath(path);
- if (item != null)
- {
- return item;
- }
- }
- return null;
- }
- }
- }
|