C# to loop through folder until it finds the correct files
Posted
by
Liton Uddin
on Stack Overflow
See other posts from Stack Overflow
or by Liton Uddin
Published on 2012-12-17T17:01:29Z
Indexed on
2012/12/17
17:02 UTC
Read the original article
Hit count: 360
c#
I’m running a batch to do an update to my sql table. I’m using windows scheduler to run the batch file. Each day files come in at different time. Sometime they come in after my scheduled time therefore the batch file doesn’t run when there’s no file before the scheduled task in the folder. I want to create a c# program where it will loop through the folder until it finds the files and then move to the next step in the batch file. Basically my goal is to create a program that will look for those particular files and once they finds the correct files then it will start the update. I’m new to programming and need some direction. Can someone please help me with this? Thanks.
© Stack Overflow or respective owner