Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I want to get directories recursively. It has to be a dynamic process. But I am only getting first level sub directories.
Kindly help
Root Folder: \\preprod\Apps\Qlikview\Pipeline\
My folder structure:
Pipeline
Folder1
Folder2
Folder3
******This is my code however it is taking only first level sub directories******
Set UAT="\\preprod\Apps\Qlikview\Pipeline\";
FOR each dir in dirlist ('$(UAT)'&'*')
trace 'Dir is: '$(dir);
--Call Subroutine Code Will be added here--
NEXT dir
********My Code End************************************
I need to get all the sub directories and diretories inside my sub directories (It has to be recursive)
The link which you have shared will only go through one level. It will not fetch files from multi layer folders.
Unfortunately that will not solve my purpose 😞