Nexus.Client.Games.Settings.RequiredDirectoriesControlVM.CheckCleanInstallInfoFolder C# (CSharp) Méthode

CheckCleanInstallInfoFolder() protected méthode

Checks whether the selected Mods folder is clean.
protected CheckCleanInstallInfoFolder ( string p_strInstallInfo ) : bool
p_strInstallInfo string
Résultat bool
		protected bool CheckCleanInstallInfoFolder(string p_strInstallInfo)
		{
			if (Directory.Exists(p_strInstallInfo))
				return !(File.Exists(Path.Combine(p_strInstallInfo, "InstallLog.xml")));

			return true;
		}