Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

The 'ExternalRuleDirectories' is stored as a 1-dimensional array.

You could probably create a quick function that would look for the comma (,) and then parse it into an array that's returned. The quick snip below puts it into a regular string that you can just manipulate or you can try and deal with the array as it is.

 

Dim output As String = String.Join(", ", iLogicAuto.FileOptions.ExternalRuleDirectories)
Logger.Info(output)

 

dannylewisA9QBW_0-1652103021799.png