gpt4 book ai didi

c++ - wofstream 只创建一个空文件 C++

转载 作者:行者123 更新时间:2023-11-30 02:30:37 32 4
gpt4 key购买 nike

我有一个 for 循环(如下),它应该使用 wofstream 将几个字符串输出到多个文件。不幸的是,它创建了文件但没有将字符串输出到文件。文件总是空的。我已经看过很多类似的问题但没有运气。任何帮助将不胜感激。我在 Windows 10 机器上使用 Visual Studio 2015 编写 UWP 应用程序。

for (size_t k=0;k < vctSchedulesToReturn.size();k++)
{
auto platformPath = Windows::Storage::ApplicationData::Current->RoamingFolder->Path;
std::wstring wstrplatformPath = platformPath->Data();
std::wstring wstrPlatformPathAndFilename = wstrplatformPath + L"\\" + availabilityData.month + L"_" + std::to_wstring(availabilityData.year) + L"_" + std::to_wstring(k) + L"_" + L"AlertScheduleOut.csv";
std::string convertedPlatformPathandFilename(wstrPlatformPathAndFilename.begin(), wstrPlatformPathAndFilename.end());

std::wofstream outFile(convertedPlatformPathandFilename);
outFile.open(convertedPlatformPathandFilename);
std::vector<std::pair<wstring, wstring>>::iterator pairItr;
std::wstring strScheduleOutputString = L"";
for (pairItr = vctSchedulesToReturn[k].second.begin(); pairItr!=vctSchedulesToReturn[k].second.end(); pairItr++)
{
strScheduleOutputString += pairItr->first + L",";
}
strScheduleOutputString += L"\r\n";
for (pairItr = vctSchedulesToReturn[k].second.begin(); pairItr != vctSchedulesToReturn[k].second.end(); pairItr++)
{
strScheduleOutputString += pairItr->second + L",";
}
outFile << strScheduleOutputString;
outFile.flush();
outFile.close();
}

最佳答案

std::wofstream outFile(convertedPlatformPathandFilename);

这将创建一个新文件,并打开它进行写入。

outFile.open(convertedPlatformPathandFilename);

这会尝试打开同一个文件流进行第二次写入。因为文件流已经打开,所以这是一个错误。该错误将流设置为失败状态,所有写入流的尝试现在都将失败。

这就是您最终得到一个空输出文件的方式。它被创建,并且第二次尝试打开同一个文件流对象时将其置于错误状态。

关于c++ - wofstream 只创建一个空文件 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38405969/

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