September 19, 2008 at 3:14 pm
I've got a package that watches for a file. Once that file exist it performs other tasks. The last task deletes the file that is being watched, I then want to start the 'file watcher task' over again. So basically a continuous loop.. Any ideas?
September 19, 2008 at 3:38 pm
Nevermind. Should've finished my research...
I ended up using a For Loop Container and setting a counter limit variable really high, like 999. It's going to work for me.
September 19, 2008 at 3:45 pm
If you want to package to run until it's manually stopped then you do not have to increment a counter each time you go thru the loop. If you test for a value equal to itself then the result of the test will always be true.
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply