Hi,
How can we create a “text file” in a folder while executing the workflow. I am using the folder path from Orchestrator Assets.
Regards,
Hi,
How can we create a “text file” in a folder while executing the workflow. I am using the folder path from Orchestrator Assets.
Regards,
Get Asset (Get the value of the “FolderPath” asset from Orchestrator and store it in a variable, e.g., folderPathValue)
Assign (Assign a filename to the text file)
Write Text File (Create the text file with some content)
textFilePath= Path.Combine(folderPathValue, “example.txt”)
"op.txt"
Hope it helps!!
Assign (filePath)
To: filePath
Value: Path.Combine(folderPath, “example.txt”)
Write Text File (Write content to the text file)
File Name: filePath
Text: “This is the content of the text file.”
Hope it helps!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.