gpt4 book ai didi

c++ - WIN32_FIND_DATA - 获取绝对路径

转载 作者:可可西里 更新时间:2023-11-01 13:03:31 26 4
gpt4 key购买 nike

我正在使用这样的东西:

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 这样的第三方库?我想打印每个文件的绝对路径。

最佳答案

参见 GetFullPathName功能。

关于c++ - WIN32_FIND_DATA - 获取绝对路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12361140/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com