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

I have looked at the split string methods in C#, such as:

string[] lines = Regex.Split(value, "\");

Although I have come across the situation where I need to extract a file name from a file path, so I dont want to have to split the string on all occurrences of "\" e.g.:

C:\Windows\System32\calc.exe

Expected output:

calc.exe
share|improve this question

2 Answers

up vote 5 down vote accepted
new FileInfo(@"C:\Windows\System32\calc.exe").Name
share|improve this answer

Let the framework take the strain. Use the Path.GetFilename method.

http://msdn.microsoft.com/en-us/library/system.io.path.getfilename.aspx

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.