Search Keywords in files

Hi @Techno1

having in array would be easy so you can convert datatable to array (hope you have only one column) dt.AsEnumerable.Select(function(x) x(“columnname”).ToString).ToArray

And use as described in this post

If you are having multiple columns then create multiple arrays or use a for each loop and then check

Cheers