WIN32_FIND_DATA - 获取绝对路径

Mih*_*dor 7 c++ windows filesystems directory absolute-path

我正在使用这样的东西:

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);
Run Code Online (Sandbox Code Playgroud)

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

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

Jon*_*ter 9

GetFullPathName功能.

  • 具体来说,在目录上调用`GetFullPathName`,并将其与`WIN32_FIND_DATA`中的文件名组合. (4认同)