(In Windows/Command line) I'd like to generate a list of all files, and for each file, I also want the full path displayed.
So if you were doing a directory listing of the folder c:\users\me and it had the files a.txt, b.txt and c.txt, I'd want the following output:
...
c:\users\me\a.txt
c:\users\me\b.txt
c:\users\me\c.txt
...
Can anyone suggest a tool that does this, or do I have to actually go code this?