Upload a directory from the SD card of a SIMATIC PLC with IP address 192.168.0.1 and store it to the local drive:
# copy all files in the folder 'recipes' from the SD card to the current directory
sld upload-dir --target 192.168.0.1 --input recipes
# copy all files in the folder 'recipes' from the SD card to 'C:/central_recipes/recipes'
sld upload-dir --target 192.168.0.1 --input recipes --output C:/central_recipes
# copy all files in the root folder of the SD card to 'backup'
sld upload-dir --target 192.168.0.1 --input . --output backup
sld upload-dir --help