views:

24

answers:

1

In SQL Server Integration Services 2005, how do I read a directory so I can then process all of the files in that directory?

+5  A: 

I think you are looking for a foreach loop like this example:

http://www.sqlis.com/post/Looping-over-files-with-the-Foreach-Loop.aspx

xkingpin