I am new to powershell.
I have been looking for how to code look for a certain phrase/text in the folder
and show output each file name.
I code this looks for a certain phrase which in this case, "v_lfy" in A file
select-string -path "C:\Users\kiki\Desktop\copy\allocation - Copy.prc"
-pattern "v_lfy"
but I would like to look for "v_lfy" from many files in the folder.
and output shows the each file name like C:\Users\kiki\Desktop\copy\allocation - Copy.prc
How should I code?