Вам придется использовать задачу скрипта, что-то вроде этого должно помочь:
Dim filePath As String = "C:\YourFolder\YourFile.ext"
If File.Exists(filePath) = False Then
Dts.TaskResult = Dts.Results.Failure
Return
End If
Dim currentDate As Date = DateTime.Now
Dim fileCreateDate As Date = File.GetCreationTime(path)
If currentDate.ToShortDateString <> fileCreateDate.ToShortDateString Then
'Do something
End If