When using batch transform for file creation, how do we extract the file in RPA flow?
it has a download button on the agent builder trace but i want to be able to download/extract the file via rpa studio
When using batch transform for file creation, how do we extract the file in RPA flow?
it has a download button on the agent builder trace but i want to be able to download/extract the file via rpa studio
Hi @ashton.lalchan ,
You can’t directly access the “Download” file from Agent Builder trace in Studio that UI is only for preview/debug.
Instead, u need to explicitly return the file from the agent:
• For small files: return Base64 → decode in Studio → Write Binary File
• For large files: upload to Storage (Orchestrator bucket, SharePoint, S3) and return the file URL
• Recommended (UiPath-native): use Storage Buckets + download via activities
In short: design the agent output to pass the file, don’t rely on the trace download
I have tried this method but it is requesting a filepath, the agent only returns the following information. How can I extract and store via orchesrator storage buckets?