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

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

    Try this:

    string fileName = Path.GetFileNameWithoutExtension(@"C:\Program Files\hello.txt");
    

    This will return "hello" for fileName.

提交回复
热议问题