How to Download Backup Files from Salesforce Using UIPath Robots
How to download backup files from Salesforce using UiPath robots.
How to get the latest file from the folder:
Directory.GetFiles(“YOUR FOLDER”).OrderByDescending(Function(d) New FileInfo(d).CreationTime).First
The link for download backups:
https://YOURINSTANCE/ui/setup/export/DataExportPage/d
Responses