private void CreateNewProjetFiles() { // create index.json file string path = location + @"\" + title; ProjectMethadata toFile = new ProjectMethadata(this.ContentLocation); DiskIO.SaveAsJSONFile(toFile, path, "index.json"); string mcmFileContent = string.Join(";", new string[2] { title, location }); DiskIO.SaveAsTextFile(mcmFileContent, path, title + ".mcm"); }