处理 cURL 中的空格

发布于 2024-10-27 08:27:31 字数 542 浏览 1 评论 0原文

我正在尝试使用 cURL 将文件传输到 ftp 服务器,但我一直不知道如何处理目录名称中的空格。例如,我尝试以下代码:

C:\cURL\curl -T C:\Documents and Settings\outputfolder\temp1.txt ftp://ftpsite.com/ --user username:password

但它响应“curl: Can't open 'C:\Documents'!”我认为它有空格问题,所以我尝试用 %20: 替换它,

C:\cURL\curl -T C:\Documents%20and%20Settings\outputfolder\temp1.txt ftp://ftpsite.com/ --user username:password

但它随后响应“curl: Can't open 'C:\Documents%20and%20Settings\outputfolder\temp1.txt'!”

那么,当我尝试指定要传输的文件夹和文件时,如何处理空白字符呢?

I'm trying to use cURL to transfer files to an ftp server, but for the life of me I can't figure out how to deal with whitespaces in my directory names. For example, I try the following code:

C:\cURL\curl -T C:\Documents and Settings\outputfolder\temp1.txt ftp://ftpsite.com/ --user username:password

but it responds with "curl: Can't open 'C:\Documents'!" I figured it has any issue with the whitespace, so I tried replacing it with %20:

C:\cURL\curl -T C:\Documents%20and%20Settings\outputfolder\temp1.txt ftp://ftpsite.com/ --user username:password

but it then responds with 'curl: Can't open 'C:\Documents%20and%20Settings\outputfolder\temp1.txt'!'

So, how do I go about dealing with the whitespace characters when I'm trying to specify the folder and file that I want to transfer?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

温柔戏命师 2024-11-03 08:27:32

CMD.EXE 无法识别 %20。使用双引号代替:

C:\cURL\curl -T "C:\Documents and Settings\outputfolder\temp1.txt" ftp://ftpsite.com/ --user username:password

CMD.EXE doesn't understand %20. Use doublequotes instead:

C:\cURL\curl -T "C:\Documents and Settings\outputfolder\temp1.txt" ftp://ftpsite.com/ --user username:password
沙沙粒小 2024-11-03 08:27:32

尝试将文件名用双引号引起来。

IE:

C:\cURL\curl -T "C:\Documents and Settings\outputfolder\temp1.txt" ftp://ftpsite.com/ --user username:password

Try wrapping your filenames in double quotes.

I.e.:

C:\cURL\curl -T "C:\Documents and Settings\outputfolder\temp1.txt" ftp://ftpsite.com/ --user username:password
凌乱心跳 2024-11-03 08:27:32

尝试使用“\”或在目录名称两边加上引号。

Try '\ ' or putting quotes around the directory name.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文