The error I am getting is:
The object "dropfolder/export/campaigns/In_67f7c26031160000fa0030ae%5C1a_Account.csv" does not exist.
How do I prevent this ln_... string?
The function of the "action tool" and "file browse tool" is so that users can browse/select files and append that into the s3 object path used by the "S3 connector tool" - allowing gallery access users to run the workflow on the full size files in s3, without aws access. We host have a scheduler pulling samples of the larger files into the server, so users can browse/select from a list of filenames as they are uploaded to s3.
The issue - is a non-specified string being passed to the s3 object path, which I assume is caused by the formula used in the action tool? How should the formula be setup to concatenate the filename into the object path?
This is the Action Tool formula (#1 is the file selected in file browser):
IF [#2] = "Campaigns" THEN
"dropfolder/export/campaigns/"+[#1] ELSE
"dropfolder/export/launches/"+[#1]
ENDIF