I am using an SSIS package that removes the rows from the SQL table before importing. Before I run any tasks, I want to check if there is a file in the source folder. If the file exists, we will run our other SSIS tasks. Otherwise, we can complete our package without running any tasks. I used the link below to configure the script task that checks the file exists in the source folder http://www.techbrothersit.com/2013/07/ssis-how-to-check-if-file-exists-in.html
The problem I have is that the filename changes every day, and this example only works if we use the same file name all the time. Is there a way to do this to check that if .xlsx files exist in the source directory?
Thanks in advance!