I have a folder with three files and want the equivalent of dir /s /b in PowerShell. How do I do that?
For example, if the folder name is temp3 and it contains three text files - a.txt. b.txt, and c.txt, doing
C:\temp3> dir /s /b
gives me
C:\temp3\a.txt
C:\temp3\b.txt
C:\temp3\c.txt
How do I get the same result in PowerShell?