Re: Splitting array invalid
Thank you, that is alot more simple and got me the string i want for each loop. Now the last step to complete this flow:
For every file created i now have the name, I then retrieve a list of all files in my output folder.
For every file created I need to compare the created file name to every file in the retrieved files list (after a minute)
If the created file name is also in the list of retrieved file names, everything is fine.
If the created file name is not in the list of retrieved file names, i need a email notification one is missing.
Basically:
use createdfilename1.zip and create some kind of loop
compare createdfilename1.zip to retrievedfilename1.zip, if match
goto next (with createdfilename2.zip)
else
compare createdfilename1.zip to retrievedfilename2.zip, if match
goto next (with createdfilename2.zip)
else
compare createdfilename1.zip to retrievedfilename3.zip, if match
goto next (with createdfilename2.zip)
if no match found -> email notification and goto next (with createdfilename2.zip)
run that untill all createdfilenames are checked
