SFDO-Tooling / CumulusCI

Python framework for building portable automation for Salesforce projects
http://cumulusci.readthedocs.io
BSD 3-Clause "New" or "Revised" License
363 stars 242 forks source link

Add tasks to extract and upload files (Salesforce Files) #3801

Closed mjawadtp closed 4 months ago

mjawadtp commented 5 months ago

Two CumulusCI tasks namely retrieve_files and upload_files have been added.

The task retrieve_files downloads all the files uploaded to Files section of a Salesforce org. Task option path lets you download files to a download location of your choice while file_list allows you to specify the names of the files you want to download. By default, all the files present in your org are downloaded to Files/.

Similary, upload_files uploads files present in the directory 'Files'. directory to your Salesforce org. Task option 'path' lets you upload files present in a different directory than the task default directory 'Files'. You can also list the files to upload by name using the task option 'file_list'.

Unit tests for the aforementioned tasks have been added.

Work items: W-15946960 and W-15946966