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?
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
add a comment |
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
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
add a comment |
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
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
shell curl msys synology
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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'
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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'
add a comment |
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'
add a comment |
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'
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'
answered Mar 7 at 12:40
FleMoFleMo
813
813
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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