Check result of pscp transfer in VBA

267 views Asked by At

I use pscp to copy a file from Windows to Unix and I run it using VBA. After pscp command how will I ensure that file is transferred successfully?

shell "pscp -P 22 -pw abcd test.csv [email protected]:/u01/test"
1

There are 1 answers

0
Martin Prikryl On

Test pscp exit code. 0 is success, 1 is error.

For examples of code that test exit code of an application, see: