Hi @OmkarK9 ,
You have 2 methods. Please find the solution.
1. You can Get File path Part you will get all the required fields as shown in below image.

2. You need to get all the files in the folder then need to apply the conditions as shown in below image.

Code:
Folder.GetFiles Folder: $'''C:\\Users\\OneDrive\\Desktop\\Power Automate Desktop\\Doc_templates\\Doc_templates''' FileFilter: $'''*''' IncludeSubfolders: False FailOnAccessDenied: True SortBy1: Folder.SortBy.NoSort SortDescending1: False SortBy2: Folder.SortBy.NoSort SortDescending2: False SortBy3: Folder.SortBy.NoSort SortDescending3: False Files=> Files
LOOP FOREACH CurrentItem IN Files
IF CurrentItem.NameWithoutExtension = $'''UAT Test Results''' THEN
Display.ShowMessageDialog.ShowMessage Message: CurrentItem.FullName Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed
END
END
(Note:- if you got your solution you can mark as solution and gives kudos)
Thanks & Regards
Vishnu Reddy