SFT Put File

0
Good day all, I am new to SFTP module and i need help/suggestions. I configured SFTP module and connected with HVR system. Test connection was successful. I want to send a CSV file to HVR.  So in the Put File action it goes down. Seems like i need to choose a correct destination path... I do not know what to write there. Can someone help me? Thanks
asked
2 answers
0

Use the Pwd action from the SFTP module and use the string it returns as prefix, or use './', that is a dot and a slash. You're prefixing the destination with '/', a slash, which points to the root of the destination server file system, to which you don't have access. So you enter e.g.:

$Pwd + '/' + $CSVFile/Name

 

answered
0

Normally when you connect to an external SFTP server you already end up automaticly in your home directory. So you can leave it empty. But when you want to have subdirectories in that home directory you can specify the subdir where you want to put the file.

Regards,

Ronald

 

answered