This is one of the most ridiculously annoying problems i faced in UiPath.
Im trying the most simple thing on earth that is to type the file path i want the file saved to (downloaded from ACME) and using a hotkey (enter) to ‘go to’ the file path and save the file there.
Steps for my process:
download the file
click on ‘save as’
enter the file path variable i created in the text-box like this:
What I understand from your statement is that you want to save the file at one particular location.
What you can do is, instead of using hot keys. Use “TypeInto” Activity at “File name” field with complete path(including file name) and click on save. That would work
Instead of navigating to that folder, send hotkey for “Enter”, you can simply append the folder path where you want to save to the file name(which you want to give).
{FolderPath}+{FileName}
FolderPath: “D:\Data\Temp”
FileName: “Report_RO12345-2017.csv”
Then, add a Typein activity and select the text edit (shown in below image marked in blue color) and assign text to be entered as complete file name like “D:\Data\TempReport_RO12345-2017.csv”.