From what I have read having a \ will ignore the break character in a Java string. So I have the following code:
//requestedFile is created from a substring from above and contains the string "WebRoot\"
if(requestedFile == "WebRoot\\" {
do stuff
}
Are these not the same thing?