29 Sep
2006
29 Sep
'06
4:12 p.m.
Andrei Danaila wrote:
Hi,
Noob question, how do we rename a file obtained from a directory_iterator. i'm attempting to compile the following much simplified example.
directory_iterator i("whateverPath"); i++; // i know i++ exists rename (i->current_path(), TestRename);
When i try to compile the above , it tells me that i is actually a "path" object not a directory iterator.
i->current_path() means (*i).current_path(). Maybe you need i.current_path()?