Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to get the name of a file from its full path, in vc++. How can I get this? I need only the file name. Can I use Split method to get this? If not how can I get the file name from the full path of the file?

share|improve this question

2 Answers

up vote 1 down vote accepted
String^ fileName = "C:\\mydir\\myfile.ext";
String^ path = "C:\\mydir\\";
String^ result;
result = Path::GetFileName( fileName );
Console::WriteLine( "GetFileName('{0}') returns '{1}'", fileName, result );

See Path::GetFileName Method

share|improve this answer
I cannot hard code the file name. It changes. Then how can I give path like this. – Nelson T Joseph Nov 8 '11 at 9:55
Who told you to hardcode .Above is just a kickoff example , you can modify it as you need . – Muse Nov 8 '11 at 9:59

Find the last \ or /1 using one of the standard library string/char * search methods. Then extract the following text. Remember to special case where the / or \ is the last character.


1 The Windows API, for most purposes2 supports both.

1 The exception is when using long paths starting \\?\ to break 260 character limit on paths.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.