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

后端 未结 11 972
面向向阳花
面向向阳花 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:41

    You can use Path API as follow:

     var filenNme = Path.GetFileNameWithoutExtension([File Path]);
    

    More info: Path.GetFileNameWithoutExtension

提交回复
热议问题