Hi all,
Using my application I've found a file path anywhere on my machine and store the full path in a CString variable. That is full path, like this,
G:\Work On\CPP\001_002_003.txt
What I want to do is, find the name of the file(without the extension), 001_002_003 according to my example. Then separate as 001 002 and 003, then write them to a file in three columns.
I'm stuck with how to get that three part, 001 002 and 003, from the full file path.
Thanks.