SSIS seems to me overkill for just checking a file exists.
Powershell can do that:
$ErrorActionPreference = "Stop"
if( -not (Test-Path "c:\temp\im_not_there.txt")) { throw "Not there!" }
CMD can do that as well
if not exist c:\temp\im_not_there.txt exit /b 1