Curl changes multipart/form-data path parameter2019 Community Moderator ElectionMSYS2: How to disable automatic translation of pathname to drive letter?How to urlencode data for curl command?curl data array post +multipart/form-dataHow to POST JSON data with Curl from Terminal/Commandline to Test Spring REST?Using curl to upload POST data with filesChange name of upload file in cURL?Python equivalent to curls --form: Create multipart form-data post request with data in “form” parameterHow to use Chrome's “Copy as cURL” for multipart/form-data post requests on WindowsAdd values with curl inside a fileupload in a multipart formusing curl for multipart/form-data with a file uploadHow do I get this multipart/form-data request working with cURL in PHP?

PlotLabels with equations not expressions

How to simplify this time periods definition interface?

How could a female member of a species produce eggs unto death?

Happy pi day, everyone!

Could the Saturn V actually have launched astronauts around Venus?

I need to drive a 7/16" nut but am unsure how to use the socket I bought for my screwdriver

Does splitting a potentially monolithic application into several smaller ones help prevent bugs?

Why are there 40 737 Max planes in flight when they have been grounded as not airworthy?

How to answer questions about my characters?

Rejected in 4th interview round citing insufficient years of experience

Why using two cd commands in bash script does not execute the second command

Can hydraulic brake levers get hot when brakes overheat?

Making a sword in the stone, in a medieval world without magic

At what level can a dragon innately cast its spells?

What does it mean to make a bootable LiveUSB?

Theorems like the Lovász Local Lemma?

Did CPM support custom hardware using device drivers?

Rules about breaking the rules. How do I do it well?

It's a yearly task, alright

How do I hide Chekhov's Gun?

How to deal with a cynical class?

How could a scammer know the apps on my phone / iTunes account?

Is having access to past exams cheating and, if yes, could it be proven just by a good grade?

Be in awe of my brilliance!



Curl changes multipart/form-data path parameter



2019 Community Moderator ElectionMSYS2: How to disable automatic translation of pathname to drive letter?How to urlencode data for curl command?curl data array post +multipart/form-dataHow to POST JSON data with Curl from Terminal/Commandline to Test Spring REST?Using curl to upload POST data with filesChange name of upload file in cURL?Python equivalent to curls --form: Create multipart form-data post request with data in “form” parameterHow to use Chrome's “Copy as cURL” for multipart/form-data post requests on WindowsAdd values with curl inside a fileupload in a multipart formusing curl for multipart/form-data with a file uploadHow do I get this multipart/form-data request working with cURL in PHP?










0















I try to send some multipart/form-data data using curl in a msys shell to a NAS named Synology. The form-data needs a parameter named "path" and must formated like "/dir/dir2". The slashes can't be changed.

My problem is, when i am using curl the path variable will be changed to "C:/git-sdk-64/dir/dir2" and i don't know how to prevent it. My command looks like this:



curl -X POST 
'http://url:port/webapi/entry.cgi?_sid=secret&api=SYNO.FileStation.Upload&method=upload&version=2'
-F "path=/dir/dir2"
-F 'overwrite=true'
-F 'filename=@/c/Temp/test.txt'









share|improve this question






















  • curl doesn't change the path, something else does it. Are you perhaps using msys? It is known to do those things when trying to be "helpful".

    – Daniel Stenberg
    Mar 7 at 12:27











  • Ok. Thats some good info i can start with.I am new to this bash and shell world. And i must use msys. Nothing else i can use.

    – FleMo
    Mar 7 at 12:34











  • See also stackoverflow.com/questions/44700461/…

    – Daniel Stenberg
    Mar 7 at 12:40















0















I try to send some multipart/form-data data using curl in a msys shell to a NAS named Synology. The form-data needs a parameter named "path" and must formated like "/dir/dir2". The slashes can't be changed.

My problem is, when i am using curl the path variable will be changed to "C:/git-sdk-64/dir/dir2" and i don't know how to prevent it. My command looks like this:



curl -X POST 
'http://url:port/webapi/entry.cgi?_sid=secret&api=SYNO.FileStation.Upload&method=upload&version=2'
-F "path=/dir/dir2"
-F 'overwrite=true'
-F 'filename=@/c/Temp/test.txt'









share|improve this question






















  • curl doesn't change the path, something else does it. Are you perhaps using msys? It is known to do those things when trying to be "helpful".

    – Daniel Stenberg
    Mar 7 at 12:27











  • Ok. Thats some good info i can start with.I am new to this bash and shell world. And i must use msys. Nothing else i can use.

    – FleMo
    Mar 7 at 12:34











  • See also stackoverflow.com/questions/44700461/…

    – Daniel Stenberg
    Mar 7 at 12:40













0












0








0








I try to send some multipart/form-data data using curl in a msys shell to a NAS named Synology. The form-data needs a parameter named "path" and must formated like "/dir/dir2". The slashes can't be changed.

My problem is, when i am using curl the path variable will be changed to "C:/git-sdk-64/dir/dir2" and i don't know how to prevent it. My command looks like this:



curl -X POST 
'http://url:port/webapi/entry.cgi?_sid=secret&api=SYNO.FileStation.Upload&method=upload&version=2'
-F "path=/dir/dir2"
-F 'overwrite=true'
-F 'filename=@/c/Temp/test.txt'









share|improve this question














I try to send some multipart/form-data data using curl in a msys shell to a NAS named Synology. The form-data needs a parameter named "path" and must formated like "/dir/dir2". The slashes can't be changed.

My problem is, when i am using curl the path variable will be changed to "C:/git-sdk-64/dir/dir2" and i don't know how to prevent it. My command looks like this:



curl -X POST 
'http://url:port/webapi/entry.cgi?_sid=secret&api=SYNO.FileStation.Upload&method=upload&version=2'
-F "path=/dir/dir2"
-F 'overwrite=true'
-F 'filename=@/c/Temp/test.txt'






shell curl msys synology






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 7 at 12:16









FleMoFleMo

813




813












  • curl doesn't change the path, something else does it. Are you perhaps using msys? It is known to do those things when trying to be "helpful".

    – Daniel Stenberg
    Mar 7 at 12:27











  • Ok. Thats some good info i can start with.I am new to this bash and shell world. And i must use msys. Nothing else i can use.

    – FleMo
    Mar 7 at 12:34











  • See also stackoverflow.com/questions/44700461/…

    – Daniel Stenberg
    Mar 7 at 12:40

















  • curl doesn't change the path, something else does it. Are you perhaps using msys? It is known to do those things when trying to be "helpful".

    – Daniel Stenberg
    Mar 7 at 12:27











  • Ok. Thats some good info i can start with.I am new to this bash and shell world. And i must use msys. Nothing else i can use.

    – FleMo
    Mar 7 at 12:34











  • See also stackoverflow.com/questions/44700461/…

    – Daniel Stenberg
    Mar 7 at 12:40
















curl doesn't change the path, something else does it. Are you perhaps using msys? It is known to do those things when trying to be "helpful".

– Daniel Stenberg
Mar 7 at 12:27





curl doesn't change the path, something else does it. Are you perhaps using msys? It is known to do those things when trying to be "helpful".

– Daniel Stenberg
Mar 7 at 12:27













Ok. Thats some good info i can start with.I am new to this bash and shell world. And i must use msys. Nothing else i can use.

– FleMo
Mar 7 at 12:34





Ok. Thats some good info i can start with.I am new to this bash and shell world. And i must use msys. Nothing else i can use.

– FleMo
Mar 7 at 12:34













See also stackoverflow.com/questions/44700461/…

– Daniel Stenberg
Mar 7 at 12:40





See also stackoverflow.com/questions/44700461/…

– Daniel Stenberg
Mar 7 at 12:40












1 Answer
1






active

oldest

votes


















0














Thanks to Daniel Stenberg's info i found out this is a "problem" with msys self. Msys fills up the path variable. Written down here http://www.mingw.org/wiki/Posix_path_conversion. The solution is to put an semicolon at the end of the path. The complete command now looks like this:



curl -X POST 
'http://url:port/webapi/entry.cgi?_sid=secret&api=SYNO.FileStation.Upload&method=upload&version=2'
-F "path=/dir/dir2;"
-F 'overwrite=true'
-F 'filename=@/c/Temp/test.txt'





share|improve this answer






















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55043578%2fcurl-changes-multipart-form-data-path-parameter%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Thanks to Daniel Stenberg's info i found out this is a "problem" with msys self. Msys fills up the path variable. Written down here http://www.mingw.org/wiki/Posix_path_conversion. The solution is to put an semicolon at the end of the path. The complete command now looks like this:



    curl -X POST 
    'http://url:port/webapi/entry.cgi?_sid=secret&api=SYNO.FileStation.Upload&method=upload&version=2'
    -F "path=/dir/dir2;"
    -F 'overwrite=true'
    -F 'filename=@/c/Temp/test.txt'





    share|improve this answer



























      0














      Thanks to Daniel Stenberg's info i found out this is a "problem" with msys self. Msys fills up the path variable. Written down here http://www.mingw.org/wiki/Posix_path_conversion. The solution is to put an semicolon at the end of the path. The complete command now looks like this:



      curl -X POST 
      'http://url:port/webapi/entry.cgi?_sid=secret&api=SYNO.FileStation.Upload&method=upload&version=2'
      -F "path=/dir/dir2;"
      -F 'overwrite=true'
      -F 'filename=@/c/Temp/test.txt'





      share|improve this answer

























        0












        0








        0







        Thanks to Daniel Stenberg's info i found out this is a "problem" with msys self. Msys fills up the path variable. Written down here http://www.mingw.org/wiki/Posix_path_conversion. The solution is to put an semicolon at the end of the path. The complete command now looks like this:



        curl -X POST 
        'http://url:port/webapi/entry.cgi?_sid=secret&api=SYNO.FileStation.Upload&method=upload&version=2'
        -F "path=/dir/dir2;"
        -F 'overwrite=true'
        -F 'filename=@/c/Temp/test.txt'





        share|improve this answer













        Thanks to Daniel Stenberg's info i found out this is a "problem" with msys self. Msys fills up the path variable. Written down here http://www.mingw.org/wiki/Posix_path_conversion. The solution is to put an semicolon at the end of the path. The complete command now looks like this:



        curl -X POST 
        'http://url:port/webapi/entry.cgi?_sid=secret&api=SYNO.FileStation.Upload&method=upload&version=2'
        -F "path=/dir/dir2;"
        -F 'overwrite=true'
        -F 'filename=@/c/Temp/test.txt'






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 7 at 12:40









        FleMoFleMo

        813




        813





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55043578%2fcurl-changes-multipart-form-data-path-parameter%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

            How to get text form Clipboard with JavaScript in Firefox 56?How to validate an email address in JavaScript?How do JavaScript closures work?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How do I copy to the clipboard in JavaScript?How do I include a JavaScript file in another JavaScript file?Get the current URL with JavaScript?How to replace all occurrences of a string in JavaScriptHow to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?

            List of MPs elected to the English parliament in 1640 (April) Contents List of constituencies and members See also Notes References Navigation menueNational Archives – The Glynde Place ArchivesCobbett's Parliamentary history of England, from the Norman Conquest in 1066 to the year 1803'Aldermen in Parliament', The Aldermen of the City of London: Temp. Henry III – 1912onepage&q&f&#61, false 229