I'd like to generate dynamic expression from string
e.g.
from string
SF = subfolder ' varable
"or each" & SF & "in fso.folders.. "
to
where subfolder is variable
Actually I need to examine contents in the parent folder which contains n not known subfolders. Is there some loop which is going to the end of folder root
Thanks
e.g.
from string
SF = subfolder ' varable
"or each" & SF & "in fso.folders.. "
to
Code:
For each subfolder in fso.folders ....
Actually I need to examine contents in the parent folder which contains n not known subfolders. Is there some loop which is going to the end of folder root
Thanks