public SteamGameDirectories(string folder, IAbsoluteDirectoryPath rootPath)
 {
     RootPath    = rootPath.GetChildDirectoryWithName("common");
     ContentPath = RootPath.GetChildDirectoryWithName(folder);
 }
 public SteamWorkshopDirectories(uint appId, IAbsoluteDirectoryPath rootPath)
 {
     RootPath    = rootPath.GetChildDirectoryWithName("workshop");
     ContentPath = RootPath.GetChildDirectoryWithName("content").GetChildDirectoryWithName(appId.ToString());
 }