Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Returning Failure if File does not exist

Tags:

powershell

I am running the below script in SQL Server Agent.

All the subsequent steps in job are dependent upon this step. This is pretty simple Looking for a file and exits with failure if file is not found.

  $file = "C:\\Data\\FileDrop\\.done"
  $CheckFile = Test-Path -Path $file

  if (!($CheckFile))  {exit 1 } 

However when the agent job runs, it says the step failed because file not found and existing with code 0 - success.

What am I doing wrong here?

like image 938
Lucky Avatar asked Jul 17 '26 20:07

Lucky


1 Answers

I don't think the return value / error code of the job has anything to do with whatever value the script returns.

If you want to fail with an error message, try this:

# make sure to stop on errors
$ErrorActionPreference = 'Stop'
$path = 'C:\Data\FileDrop\.done'
# check for file explicitly (in case a directory with that name exists)
if(![System.IO.File]::Exists($path)) {
    # throwing an exception will abort the job
    throw (New-Object System.IO.FileNotFoundException("File not found: $path", $path))
}
# anything after this will not be executed on error...

This should fail the job entirely and show the error message in the job's history.

like image 140
marsze Avatar answered Jul 20 '26 20:07

marsze



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!