public DiskDataStore(string directory) { var appendBackslash = directory.EndsWith("\\") ? "" : "\\"; var collectionsFolder = directory + appendBackslash + @"Collections\"; tagPaths = new DiskPaths(collectionsFolder); }