我希望把 c:\a\b\c\aa.txt  字符串转变成  C:\\a\\b\\c\\aa.txt
用CString的Replace函数
int n = ss.Replace(L"\",L"\\");
但是编译的时候出现了很多错误
1>f:\毕业设计\test5\test5\readdata.cpp(24) : error C2017: illegal escape sequence
1>f:\毕业设计\test5\test5\readdata.cpp(24) : error C2017: illegal escape sequence
1>f:\毕业设计\test5\test5\readdata.cpp(24) : error C2001: newline in constant
1>f:\毕业设计\test5\test5\readdata.cpp(24) : error C2308: concatenating mismatched strings
1>        Concatenating wide "",L" with narrow ");"应该怎么改正?错误在哪里?