8

我正在使用这样的东西:

std::string tempDirectory = "./test/*";

WIN32_FIND_DATA directoryHandle;
memset(&directoryHandle, 0, sizeof(WIN32_FIND_DATA));//perhaps redundant???

std::wstring wideString = std::wstring(tempDirectory.begin(), tempDirectory.end());
LPCWSTR directoryPath = wideString.c_str();

//iterate over all files
HANDLE handle = FindFirstFile(directoryPath, &directoryHandle);
while(INVALID_HANDLE_VALUE != handle)
{
    //skip non-files
    if (!(directoryHandle.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY))
    {
        //convert from WCHAR to std::string
        size_t size = wcslen(directoryHandle.cFileName);
        char * buffer = new char [2 * size + 2];
        wcstombs(buffer, directoryHandle.cFileName, 2 * size + 2);
        std::string file(buffer);
        delete [] buffer;

        std::cout << file;
    }

    if(FALSE == FindNextFile(handle, &directoryHandle)) break;
}

//close the handle
FindClose(handle);

它打印相对目录中每个文件的名称./test/*

有没有办法确定这个目录的绝对路径,就像realpath()在 Linux 上一样,不涉及任何像 BOOST 这样的第三方库?我想打印每个文件的绝对路径。

4

2 回答 2

10

GetFullPathName功能。

于 2012-09-11T00:38:59.913 回答
4

你可以试试GetFullPathName

或者您可以使用SetCurrentDirectoryGetCurrentDirectory。您可能希望在执行此操作之前保存当前目录,以便之后可以返回到它。

在这两种情况下,您只需要获取搜索目录的完整路径。API 调用很慢。在循环内部,您只需组合字符串。

于 2012-09-11T00:43:35.347 回答