...
The data export application is able to iterate through a completed export (see Salesforce > Data Management > Data Export) and copy the selections to your local server hard drive by specifying their credentials in the Salesforce connection string and the "DataExportPath" i.e. location where the zip files will be stored.
Code Block | ||
---|---|---|
| ||
<add name="SalesforceConnectionString" connectionString="G4S:user id=sfdcuser@example.com;password=examplePassword;token=YYB00TokenExampleBwENRKwCSZ;environment=Production"/> |
...
If "backUpFoldersLimit" is set more than "0", then the existing zip files and dataCache files in the data export directory will be moved to a back up folder and the current zip files and dataCache will take there place. If the limit is set to "2", then only the only latest two latest back up folders will stay in data export directory and the rest will be deleted.
...