public static string QueuePrefix = @".\Private$\";
what does the $ at the end of a string used for path traversel mean? My google foo is not strong enough to find out.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
From the name of the variable –
QueuePrefix, looks like MSMQ private queue path – http://technet.microsoft.com/en-us/library/cc776346(WS.10).aspxOtherwise,
$is a valid character in file / directory name in Windows and it could just be that. Especially since it has.\in your case. But like others mentioned, it is used to to denote shares like\\C$and so on.