Access Dynamic path/folder with ios:ofstream

For Making long description short see my case:

1
2
3
4
5
6
7
8
9
10
suppose,

path: "../defult123/test.txt"

my code: ofstream fout("../defult123/test.txt",ios::out);

Here in "defult123", "default" is static but "123" is dynamic .So Basically 

path should be written as: "../default***/test.txt"


So how can i access this dynamic path for writing in test.txt file.

1
2
3
4
so should be working ??
ofstream fout("../default*/test.txt") 

or,do  i have to list directory fist then check for folder named "default" in sub folder? if so then how do i do that?


please be a help....
you could use strings with their functions to search and append them...

check the reference...
you could use strings with their functions to search and append them...


Any example would you please refer?
Topic archived. No new replies allowed.