Hello,

What I would like to do is generate a text file containing full paths of all files within subdirectories.

So for instance, in my application, I would choose a folder on my C: drive. Let's say the folder name is TEST. In the TEST directory there are folders and files. I would like to have the program generate a text file similar to this:
C:\TEST\1.txt
C:\TEST\2.txt
C:\TEST\Dir1\1.txt
C:\TEST\Dir2\2.txt

It would store a full path on each line representing all files and all files under all sub-directories...


Is this possible?