从路径中提取文件名

时间:2011-12-20 20:50:59

标签: c++ arrays pointers double-pointer

好的,我有以下内容:

wchar_t **filePathList;

它包含要添加到列表框的文件列表。问题是它们显示了整个文件路径,我想得到的只是名称。我考虑过使用:

wchar_t *tempChar;

从filePathList的末尾开始,然后再回到\。问题是我不能完全确定如何管理这个。这是我到目前为止的代码:

afx_msg void Send::OnDropFiles(HDROP hDropInfo)
{
    if(uploadInProgress)
    {
        MessageBox(L"Please wait for current upload to finish before adding files", L"Upload in progress", MB_OK);
        return;
    }

    int len;
    int prevNFiles = nFiles;
    wchar_t **buffer = filePathList;
    wchar_t *tempChar = NULL;

    // get number of files dropped into window
    nFiles += DragQueryFile(hDropInfo, 0xFFFFFFFF, NULL, 0);

    filePathList = (wchar_t**)malloc(nFiles*sizeof(wchar_t*));
    if(!filePathList)
    {
        MessageBox(L"FilePath list memory allocation failed", L"Error");
        nFiles = 0;
        if(buffer)
        {
            for(int i=0; i<prevNFiles; i++)
            {
                if(buffer[i]) free(buffer[i]);
            }
            free(buffer);
        }
        return;
    }
    memset(filePathList, 0, nFiles*sizeof(wchar_t*));

    // get file names
    for(int i=0; i<nFiles; i++)
    {
        if(i < prevNFiles)
        {   // previously entered files
            filePathList[i] = buffer[i];
            continue;
        }
        // newly dropped files
        len = DragQueryFile(hDropInfo, i-prevNFiles, NULL, 0)+1;    // 1 for \0
        tempChar = (wchar_t*)malloc(len*sizeof(wchar_t));
        filePathList[i] = (wchar_t*)malloc(len*sizeof(wchar_t));

        int index = len;

            // Attempting to iterate through the path to get the file name
        while(filePathList[i][index] != '\\')
        {
            tempChar = filePathList[index];
            index--;
        }

        filePathList[i] = tempChar;
        if(!filePathList[i])
        {
            MessageBox(L"FilePath memory allocation failed", L"Error");
            for(int j=0; j<i; j++)
            {
                if(filePathList[j]) free(filePathList[j]);
            }
            free(filePathList); filePathList = NULL;
            nFiles = 0;
            break;
        }
        len = DragQueryFile(hDropInfo, i-prevNFiles, filePathList[i], len);

    }

    if(buffer) free(buffer);

    // display files
    UpdateFileListDisplay();
}

问题是Visual Studio将tempChar报告为“坏ptr”。我承认在编程时我仍然非常环保,对指针知之甚少,更不用说双指针。但是非常感谢任何帮助。谢谢。

3 个答案:

答案 0 :(得分:3)

您正在使用的功能是写入的76行。这不是灾难性的长期,但它已经到了很难推理的地步。将此函数分成几个较小的函数可能是值得的。您正在处理的一个问题是如何从完整路径中提取文件名。您可以使用以下签名编写函数:

char *filename_from_path(const char *fullpath);

接受完整路径并返回仅包含文件名的新字符串。 (N.B。:你必须小心谁分配和释放文件名字符串)。打破这样一个功能的巧妙之处在于,对于如何做小部件通常有很好的建议:

例如,

Extract file name from full path in C using MSVS2005

将逻辑分开,可以更容易地推断出你正在处理的更大的循环。

答案 1 :(得分:1)

错误出现在这段代码中:

tempChar = (wchar_t*)malloc(len*sizeof(wchar_t));
filePathList[i] = (wchar_t*)malloc(len*sizeof(wchar_t));

int index = len;

// Attempting to iterate through the path to get the file name
while(filePathList[i][index] != '\\')
{
    tempChar = filePathList[index];
    index--;
}

这里有一些问题:

  1. len不包含空终止符,因此您没有分配足够的内存。你还需要一个角色。
  2. 您无法再次拨打DragQueryFile来填写缓冲区。
  3. filePathList[i][index]的第一次访问超出范围,因为index超出了数组的末尾。
  4. 由于filePathList[i]未初始化,循环可能会倒计时到index为0,然后产生访问冲突。
  5. 即使您修复了所有这些错误,也需要在循环中测试index>=0,以防该字符串不包含路径分隔符。
  6. 我没有在你的问题中查看任何其他代码,但我愿意打赌我没有发现所有错误。这应该足够了。

    Joachim建议使用_splitpath非常合理,但另一方面,你真的需要掌握这种类型的编码。

答案 2 :(得分:0)

您也可以打开文件找到它的名字。虽然这可能和通过路径一样慢。