南特 0.85 上的 ftptask
如何将文件上传到 nant 中的 fpt 服务器? 我使用了以下代码,但它说属性服务器未知。
<ftp server="ftp.server.name.com"
userid="user"
password="user123"
remotedir="/the_dir_in_remote_file">
<fileset dir="dir_to_be_moved"/>
</ftp>
我使用 ftptask 库我不知道出了什么问题..请帮助 谢谢
how do u upload files to a fpt server in nant?
i used the following code but it says that attribute server is unknown.
<ftp server="ftp.server.name.com"
userid="user"
password="user123"
remotedir="/the_dir_in_remote_file">
<fileset dir="dir_to_be_moved"/>
</ftp>
i use the ftptask library i cant figure out what is wrong..please help
thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能会发现库文档很有帮助。服务器、用户名(不是用户 ID)、密码和远程目录属于一个单独的连接标记,您应该在 ftp 标记中引用它们:
上面的代码片段适用于最新版本的 NAnt 和 FTPTask
You might find the library documentation helpful. The server, username (not userid), password and remotedir belong to a separate connection tag which you should reference in the ftp tag:
The above snippet works with the latest version of NAnt and FTPTask
您可以使用WinSCP(适用于Windows的免费FTP客户端)并通过nant标签集成它。我在这里写了关于它的博客
You may use the WinSCP (free ftp client for windows) and integrate it through nant tag. I blogged about it here