I am looking for recursion through folders / subfolders / etc. and dynamically populates the array with dynamic folders.
Example: I have a folder called "A" that has 2 subfolders "B" and "C". "C" has a subfolder of "D". Thus, the array will look like this:
Folder[01]=A
Folder[02]=A/B
Folder[03]=A/C
Folder[04]=A/C/D
Will the FOR / D command work with what I need? If so, how can I take what the loop gets and add it to the array? Unfortunately, it must be in the party. Thank!
source
share