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 user@XXX.com:/u01/test"
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 user@XXX.com:/u01/test"
Test pscp exit code. 0 is success, 1 is error.
For examples of code that test exit code of an application, see: