Corrupt file when using Azure Functions External File binding
问题 I'm running a very simple ExternalFileTrigger scenario in Azure Functions were I copy one created image file from one onedrive directory to another. function.json { "bindings": [ { "type": "apiHubFileTrigger", "name": "input", "direction": "in", "path": "Bilder/Org/{name}", "connection": "onedrive_ONEDRIVE" }, { "type": "apiHubFile", "name": "$return", "direction": "out", "path": "Bilder/Minimized/{name}", "connection": "onedrive_ONEDRIVE" } ], "disabled": false } run.csx using System; public