How to find data when code published to orchestrator

Hi
My automations involves in downloading attachments and creating folders.
when I publish the code and run from the assistant I cannot see any attachments downloading
and folders creating but there is not error in bot, it did the thing.
my question is Where do I found the attachments and folders that bot has to create and download after publishing to orchestartor

@kishore_praveen

When you publish a bot to Orchestrator, the attachments and folders should be created and downloaded in the specific locations you defined in your workflow. Check the paths and locations set in your workflow for any issues with the file operations, and ensure they are correctly configured to the expected locations.

cheers…!

As mentioned it is recommended to proper configure and handle work / download data

Have a look on the nuget store:

%userprofile%.nuget\packages
and browse for your process and version

Got it. Is it always like this. When we push it to orchestrator, I have designed the code to download the attachments in Data\Output.

Attachments have to download in the data folder. Data\Output.
Do we have to give the full path c/user/project/data/output/attachments

As mentioned, mixing up data and process artifacts (the xamls) is not much recommended as it growing.

However lets adress your question:

A few Activities are working relatvie and strart by the project level
Otherwise use

Path.Combine(Environment.CurrentFolder,“SubPath1”,…,OptionalFileName.EXT)