问题是我需要在保存时为文件名添加扩展名。像outfile.open(filename + ".txt")
这样的解决方案在我的案例中似乎不起作用。
有我的代码:
SaveFileDialog* saveFileDialog1 = new SaveFileDialog();
int saveAs(const string& outFileName)
{
string bufFile("C:\\Windows\\tmp.XXXXXX");
string outFile(saveFileDialog1->NewFileName);
string line;
string val;
ifstream buf_stream;
ofstream out_stream;
buf_stream.open(bufFile.c_str());
out_stream.open(outFile.c_str());
if (buf_stream)
{
while (!buf_stream.eof())
{
getline(buf_stream, line);
buf_stream >> val;
out_stream << val<<endl;
}
}
buf_stream.close();
out_stream.close();
remove("C:\\Windows\\tmp.XXXXXX");
return 0;
}
然后当我想保存结果时,我正在尝试使用该结构:
case IDM_FILE_SAVE:
{
saveFileDialog1;
saveFileDialog1->ShowDialog();
saveFileDialog1->FilterIndex1 = 1;
saveFileDialog1->Flags1 |= OFN_SHOWHELP;
saveFileDialog1->InitialDir1 = _T("C:\\Windows\\");
saveFileDialog1->Title1 = _T("Save File");
int retval = saveAs(saveFileDialog1->NewFileName);
}
我试图解决问题
SaveFileDialog::SaveFileDialog(void)
{
this->DefaultExtension1 = 0;
this->NewFileName = new TCHAR[MAX_PATH + TCHAR(".txt")];
this->FilterIndex1 = 1;
this->Flags1 = OFN_OVERWRITEPROMPT;
this->InitialDir1 = 0;
this->Owner1 = 0;
this->Title1 = 0;
this->RestoreDirectory = true;
}
bool SaveFileDialog::ShowDialog()
{
OPENFILENAME ofn;
TCHAR szFile[MAX_PATH] = "";
ZeroMemory(&ofn, sizeof(ofn));
ofn.lStructSize = sizeof(ofn);
ofn.hwndOwner = this->Owner1;
ofn.lpstrDefExt = this->DefaultExtension1;
ofn.lpstrFile = this->NewFileName;
ofn.lpstrFile[0] = '\0';
ofn.nMaxFile = MAX_PATH;
ofn.lpstrFilter = _T("All Files\0*.*\0Text files\0*.txt");
ofn.nFilterIndex = this->FilterIndex1;
ofn.lpstrInitialDir = this->InitialDir1;
ofn.lpstrTitle = this->Title1;
ofn.Flags = this->Flags1;
GetSaveFileName(&ofn);
if (_tcslen(this->NewFileName) == 0) return false;
return true;
}
任何建议都将不胜感激。
答案 0 :(得分:1)
使用c ++ 11 (检查编译器标志?),fstream::open()
函数可以很好地处理字符串。所以不需要通过c_str()
。然后,您可以按预期使用operator+
字符串:
buf_stream.open(bufFile);
out_stream.open(outFile);
...
outfile.open(filename + ".txt");
备注:当您声明文件时,您可以立即将文件名提供给流的构造函数。因此,不需要调用单独的open()
。
如果您不能使用C ++ 11 ,请使用临时字符串进行连接:
outfile.open (string(filename+".tst").c_str());