3

I have to create and write on N files, everyone must have an integer ending to identificate it.

This is my piece of code:

for(int i=0; i<MAX; i++)
{
    uscita.open("nameFile"+i+".txt", ios::out); 
    uscita <<  getData() << endl;
    uscita.close();     
}

And that's what I would like to find in my directory after execution:

nameFile0.txt
nameFile1.txt
nameFile2.txt
...
nameFileMAX.txt

The problem of the above code is that I get the compilin' error:

error C2110: '+' Impossible to add two pointers

If I try to create a string for the name, another problem comes in:

string s ="nameFile"+i+".txt";
uscita.open(s, ios::out); 

And the problem is:

error C2664: you cannot convert from string to const wchar_t*

What can I do? How can I create files with different names concating int to wchar_t*?

DavideChicco.it
  • 3,318
  • 13
  • 56
  • 84

3 Answers3

3

You can use std::to_wstring:

#include <string>

// ...

std::wstring s = std::wstring("file_") + std::to_wstring(i) + std::wstring(".dat");

(Then use s.c_str() if you need a C-style wchar_t*.)

Kerrek SB
  • 464,522
  • 92
  • 875
  • 1,084
2

You can use a wstringstream

std::wstringstream wss;
wss << "nameFile" << i << ".txt";
uscita.open(wss.str().c_str(), ios::out);
Joe
  • 56,979
  • 9
  • 128
  • 135
0

That is easier and faster:

wchar_t fn[16];
wsprintf(fn, L"nameFile%d.txt", i);
uscita.open(fn, ios::out);
vpp
  • 319
  • 1
  • 3
  • 10
  • Just a warning. `sprintf`, `wsprintf` and friends often lead to buffer overflows if you're not _really_ careful. (Either now or when the code is being maintained later.) – Michael Anderson Dec 23 '11 at 08:57