由于用到路径,所以想把路径F:\xx\awer\soft转换成VC能读的F:\\xx\\awer\\soft,所以写了如下代码,但老是出错,请各位高手帮帮忙,看看是哪里的问题         CString m_strCopy; //已经得到值         int n=0;
while(n<=m_strCopy.GetLength())
{
n=m_strCopy.Find("\");
m_strCopy.Insert("\",n);
                  
n=m_strCopy.Find("\",n);
}