I am using the following method to browse for a file:
OpenFileDialog.ShowDialog() PictureNameTextEdit.Text = OpenFileDialog.FileName
Is there a way get ONLY the file name?
The FileName method returns the entire path and file name.
i.e. I want Foo.txt instead of C:\SomeDirectory\Foo.txt
Use
Path.GetFileName(fullPath)to get just the filename part, like this: