public Boolean HasSpecialFolderFather() { if (Father == null) { return(FolderType != Domain.FolderType.standard && Type == ItemType.Folder); } else { return(Father.HasSpecialFolderFather()); } }