I'm looking for a way to all files and folders and files in those folders.
As an example.
if I have
- Root
+ file1
+ file2
-- Directory
-+ file1
-+ file2
---Directory
--+ file1
--+ file2
I would like to be able to output each one of those files in the program so it would be like:
root/file1
root/file2
root/Directory/file1
root/Directory/file2
root/Directory/Directory/file1
root/Directory/Directory/file2
As matching to the folder hierarchy.
Is there anyway to do this?
Thanks