Store a directory on the SD card of a SIMATIC PLC with IP address 192.168.0.1:
# copy all files in the local directory 'recipes' to the directory 'recipes' on the SD card
sld load-dir --input recipes --target 192.168.0.1
# copy all files and sub-directories in the local directory 'recipes' to the directory 'recipes' on the SD card recursively
sld load-dir --input recipes --recursive --target 192.168.0.1
# copy all files in the local directory 'C:/central_recipes' to the directory 'recipes/central_recipes' on the SD card
sld load-dir --input C:/central_recipes --destination recipes --target 192.168.0.1
sld load-dir --help