16,548
社区成员




char *temppath= new char[40];
ZeroMemory(temppath,40);
temppath = m_filepath.GetBuffer(0);
while (strlen(temppath) < 40)
{
strcat(temppath," ");
}
file.Write(temppath,40);
delete temppath;
char *temppath= new char[40];
temppath = m_filepath.GetBuffer(0);
delete temppath;
m_filepath.ReleaseBuffer()
m_filepath.GetBuffer(0);
m_filepath.GetBuffer(1024/*或者更大*/);