批处理脚本连接到 ftp 服务器?
我正在尝试通过运行批处理脚本连接到我的 ftp 服务器。我可以通过输入以下内容来正常登录:
ftp home.ptd.net
USERNAME
PASSWORD
cd Public
put FILENAME.txt
bye
但是,如果我按此顺序将其放入脚本中,它会连接到服务器,但仍然要求输入用户名。谁能指出我如何登录的正确方向?谢谢。
I am trying to connect to my ftp server by running a batch script. I can log into it fine by typing the following:
ftp home.ptd.net
USERNAME
PASSWORD
cd Public
put FILENAME.txt
bye
But if I put this into a script in this order, it connects to the server, but still asks for a username. Can anyone point me in the right direction on how to make it login? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅以下 msdn 文章:
来自 msdn 的 ftp 参考< /a>
我认为您需要将命令放入文本文件中,并使用 -s 参数将其传递给 ftp 命令
please see the following msdn article:
ftp reference from msdn
i think you need to place the commands in a text file and pass it to the ftp command with the -s parameter