1.2k questions

1.4k answers

361 comments

339 users

Categories

Sidebar
0 votes
643 views
by brandon-w-8204 (34.1k points)
Getting "com.qvera.qie.exception.NoResultsException: Unable to get file name from path" error using writeSFTPFile. What does this mean?

1 Answer

0 votes
This error occurs when you do not pass a file name to the path parameter. The path parameter is the 3rd parameter.

qie.writeSFTPFile('host', port, 'path', binary, passive, 'ftpParameters', 'userName', 'password', data);

Example if you want to put in the root directory you just pass the filename "test.txt".
by brandon-w-8204 (34.1k points)
...