Given a filesystem path, is there a shorter way to extract the filename without its extension?

后端 未结 11 978
面向向阳花
面向向阳花 2020-11-22 09:31

I program in WPF C#. I have e.g. the following path:

C:\\Program Files\\hello.txt

and I want to extract hello

11条回答
  •  日久生厌
    2020-11-22 09:46

    string Location = "C:\\Program Files\\hello.txt";
    
    string FileName = Location.Substring(Location.LastIndexOf('\\') +
        1);
    

提交回复
热议问题