Is there any need to escape a Registry Key path when reading it from a file?
eg. For the path : HKEY_USERS\.DEFAULT
When reading input from a file , is there a need for escaping the'\'?
If I use " HKEY_USERS\\.DEFAULT", I get the same string " HKEY_USERS\\.DEFAULT" back - why is the '\' not getting escaped?
Will it always hold that both '\' are present when I read the path from the file?