Customer Portal

How to count the number of files found by the ListFile component.

Comments 2

  • Avatar
    Vladimir Barton
    0
    Comment actions Permalink
    Hello Davis,
    from looking at your screenshots, it appears that CloverDX Designer, in fact, works as expected in this particular case. The reason why the EmailSender component does not send out an email is that no input records flows into it. Then, the reason why no input records flow into EmailSender is that the ListFiles component does not find any files in the location set up in the 'File URL' property, thus not sending any records on the edge.
    Nevertheless, this challenge can be easily overcome by redesigning your jobflow slightly. Let me present you 2 possible approaches that you can take in the attached jobflows. Worth noting is the following:
    fileExists_masterJob.jbf

    • Notice the DataGenerator component and SimpleGather component. The idea here is to send a single dummy record alongside the records from ListFiles.

    • This will ensure that even if there are no files to be found by ListFiles, you will still get at least a single record that can be sent to EmailSender using the Condition (or Filter) component, thus sending the email.

    fileExists_masterJob2.jbf

    • You can split the data flow into 2 phases and pass the count from the one to another. Note that I am using the dictionary feature for this purpose.

    • In phase 0, ListFiles will send out records based on how many files it manages to find. If no files are found, it will not send any records on the edge (again, this is by design).

    • By using Aggregate, I am getting the count of those records and then writing this into dictionary. Note that if ListFiles does not send any records, no value will be written into dictionary so it will remain null.

    • In phase 1, I am getting the dictionary value and by using the Condition component, I am forking the data flow based on whether the dictionary value is null or not null.

    Kind regards,
    Vladi
  • Avatar
    davwan
    0
    Comment actions Permalink
    Thanks for the reply Vladi.

    The method you provided is very good. I have learnt a lot.

    Thanks,
    Davis Wang

Please sign in to leave a comment.