1,
InBlock.gif如果你用的是unicode的话,那么CString里面存储的是wchar_t*,而不是 char*。你确定要把CString转换成 char*的话,还要用其他的函数:
InBlock.gif const wchar_t* wstr = ( LPCTSTR )name;         //一定得是unicode,否则这句话会错的
InBlock.gif char str[ 20 ] = { 0 };
InBlock.gifwcstombs( str, wstr, wcslen( wstr ) );
InBlock.gif执行完后,str中的数据就是 "111.txt"了。str可以赋值给一个 const char*。
InBlock.gif注意:如果CString里有中文的话,在wcstombs前后还应加这么两句:
InBlock.gifsetlocale( LC_ALL, "chs" );
InBlock.gifwcstombs( str, wstr, wcslen( wstr ) );
InBlock.gifsetlocale( LC_ALL, "C" );
2.
char* CStringToCharArray(CString str)
{
    char *ptr;
    #ifdef _UNICODE
    LONG len;
    len = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
    ptr = new char [len+1];
    memset(ptr,0,len + 1);
    WideCharToMultiByte(CP_ACP, 0, str, -1, ptr, len + 1, NULL, NULL);
     #else
     ptr = new char [str.GetAllocLength()+1];
     sprintf(ptr,_T("%s"),str);
     #endif
     return ptr;
}