public static string MakeAbsoluteTo(
     this ZlpFileInfo pathToMakeAbsolute,
     string basePathToWhichToMakeAbsoluteTo)
 {
     return(ZlpPathHelper.GetAbsolutePath(pathToMakeAbsolute.FullName, basePathToWhichToMakeAbsoluteTo));
 }
 public static string MakeAbsoluteTo(
     this string pathToMakeAbsolute,
     ZlpDirectoryInfo basePathToWhichToMakeAbsoluteTo)
 {
     return(ZlpPathHelper.GetAbsolutePath(pathToMakeAbsolute, basePathToWhichToMakeAbsoluteTo.FullName));
 }