public string GetAppPath(AppInfo appInfo)
 {
     return(Path.Combine(Path.GetFullPath(_appSettings.InstallDirectoryPath), appInfo.ToString()));
 }
        public bool IsInstalled(AppInfo appInfo)
        {
            EnsureInstallDirectory();

            return(Directory.Exists(Path.Combine(Path.GetFullPath(_appSettings.InstallDirectoryPath), appInfo.ToString())));
        }