Unicode字符集 中将CString 复制到char[]

   CString m_path="d:\\xxx.txt";

   char pathIn[MAX_PATH];

    int length = m_path.GetLength()+1;  //注意必须+1  才会有结束符

    WideCharToMultiByte(CP_ACP, NULL, m_path, -1, pathIn, length, NULL, FALSE);  //使用Unicode字符集

你可能感兴趣的:(字符转换)