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

I program in WPF C#. I have e.g. the following path: C:\Program Files\hello.txt and I want to extract hello from it. The path is a string retrieved from a database. Currently I’m using the following code to split the path by ‘\’ and then split again by ‘.’: string path = “C:\\Program Files\\hello.txt”; string[] pathArr … Read more