public string GetCategoriesPath(Id collectionId, AppCategories externalCats)
 {
   string filename = externalCats.GetProperty<string>(FileNs + "name");
   if (string.IsNullOrEmpty(filename)) filename = DefaultCategoriesFileName;
   string path = GetCollectionPath(collectionId);
   path = Path.Combine(path, filename);
   return path;
 }