Remove Path From File Name

delphi, file-io, lazarus

Solution

Just add `ExtractFileName(FName);`

Problem

I'm developing a program that needs to parse the file name into a `TTextField`. How to remove the file extension I've already know(or think that I can do like this): ``` var FName: String; FPath: String; begin FPath := OpenDialog1.FileName; FName := ChangeFileExt(FPath, ''); end; ``` But how can I remove the file path from `FName`?

Original source