The backslash character in C is an escape character. If you need to use a backslash in a constant, you need to use two of them.
myFile = SD.open("wcfg\\intro.txt", FILE_READ);
This presumes that \ is actually the separator, that there is a directory named wcfg at the root level, and that the wcfg directory contains a file names intro.txt.