I have this code to upload a simple file
curl -k -X POST https://content.dropboxapi.com/2/files/alpha/upload \
--header 'Authorization: Bearer <ACCESS_TOKEN_REDACTED> \
--header 'Content-Type: application/octet-stream' \
--header 'Dropbox-API-Arg: {"path":"/Apps","mode":{".tag":"add"}}' \
--data-binary @test.sav
But the file get renamed to Apps
Also I want to upload all .sav files inside my folder like *.sav or something
While keeping thier original names
And thanks