Foreach Loop File Name

I am familiar with SSIS solution, and I just realized something new for me:

There is a foreach loop task that contains this information in the Files: field:

enter image description here

What does it mean?

Does this mean that the task will accept files with a name like:

A(something)Sell(something)Depot(something).csv?

like: A10Sell123Depot21.csv

+4
source share
1 answer

In the Files text box, an asterisk (*) indicates that you do not know this part of the name.

`*` --> unknown string
`?` --> unknown character

Example:

" " " File.txt. asterisk() , " File ", . Word, File.doc. , File *. * ."

, yes A*Sell*Depot*.csv A(something)Sell(something)Depot(something).csv, A10Sell123Depot21.csv

0

Source: https://habr.com/ru/post/1674248/


All Articles