How can I set an expression to the FileSpec property on Foreach File enumerator?

前端 未结 3 2003
傲寒
傲寒 2021-02-09 00:40

I\'m trying to create an SSIS package to process files from a directory that contains many years worth of files. The files are all named numerically, so to save processing ever

3条回答
  •  不知归路
    2021-02-09 01:26

    The best you can do is use FileSpec to specify a mask, as you said. You could include at least some specs in it, like files starting with "201" for 2010, 2011 and 2012. Then, in some other task, you could filter out those you don't want to process (for instance, 2010).

提交回复
热议问题