Shorcut to Upload Filesystem Image

I would like to setup a shortcut in VS Code's keybindings.json like this.

    "key": "alt+cmd+i",
    "command": "runCommands",
        "args": {
            "commands": [
                "workbench.action.terminal.kill", 
                "platformio-ide.uploadfs",   <--- Is there a command for this?
                "platformio-ide.serialMonitor"
            ]
        } 
},