Änderung
- Key existiert Abfrage geändert, dass sie auch ohne SubKey funktioniert
This commit is contained in:
parent
64871eb870
commit
a379eba0a9
Binary file not shown.
Binary file not shown.
@ -297,7 +297,14 @@ namespace Eugen.ESystem
|
|||||||
/// <returns>'True' if the key exists, otherwise 'false'</returns>
|
/// <returns>'True' if the key exists, otherwise 'false'</returns>
|
||||||
public bool KeyExists()
|
public bool KeyExists()
|
||||||
{
|
{
|
||||||
return Directory.Exists(RoamingPath + "\\" + MainKey + "\\" + SubKey + "\\" + Key);
|
if (SubKeyExists())
|
||||||
|
{
|
||||||
|
return Directory.Exists(RoamingPath + "\\" + MainKey + "\\" + SubKey + "\\" + Key);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return Directory.Exists(RoamingPath + "\\" + MainKey + "\\" + Key);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user