Clovertech
› Clovertech Forums › Cloverleaf › Looking corresponding inbound key for FILESET.OBFILE
I am looking for how to pull the filename off a inbound ftp file. I tried
set ib_file_name [msgmetaget $mh FILESET.IBFILE]
with no success. Error indicated bad bad key “FILESET.IBFILE”.
Can you call msgdump on the message from the same proc to see what’s in the metadata?
I did and did see the values needed.
set dvr_ctl_str [msgmetaget $mh DRIVERCTL] set ib_file_name [keylget dvr_ctl_str FILENAME]
did the job to get the path and filename.
Thanks,