public static bool Zoom(this DirectoryConfig c)
        {
            if (c.Art == true)
            {
                return(false);
            }

            return(Str.Equals(c.Zoom, "True") || Str.Equals(c.Zoom, "Any"));
        }
        public static bool Small(this DirectoryConfig c)
        {
            if (c.Art == true)
            {
                return(false);
            }

            return(c.Zoom == null || Str.Equals(c.Zoom, "False") || Str.Equals(c.Zoom, "Any"));
        }
 public static bool Art(this DirectoryConfig c)
 {
     return(c.Art == true);
 }