在 Eclipse 和 FTP 站点之间同步文件
我目前正在使用 Eclipse PDT 进行编码,我需要将工作站上的文件与 FTP 服务器上的文件同步。
我已经安装了 RSE,但我只能下载和编辑我能看到的文件。我想要发生的是,当我点击“保存”时,文件将保存在本地,并且文件将在 FTP 站点上更新。
我有什么想法可以实现这一目标吗?
I am currently coding with Eclipse PDT, and I need to synchronise the files on my workstation with the files on the FTP server.
I've installed RSE, but I can only download and edit files as far as I can see it. What I want to happen is when I hit save, the file is saved locally, and the file to be updated on the FTP site.
Any ideas of how I can achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的项目上创建一个 Ant 构建器。请参阅此 文章。阅读本文后您应该了解的重要事项:
传输文件。
Eclipse平台获取项目
root,已更改文件列表,更改
类型(添加、修改、删除)等。
明智地使用它们。你将需要
project_loc、resource_loc 等。
获取方式见文末图片
其他可用变量可以是
传递给脚本。
对于每个文件更新,那么它可以是
慢的。如果无论如何都很慢,那么您可以为 Eclipse 创建一个构建器插件,但事实并非如此复杂的。我之前创建了一些。
不仅更改了一个文件,而且还更改了
列表。
Create an ant builder on your project. See this article about how to do that. The important things you should know after you read the article:
transfer the files.
the Eclipse platform to get project
root, list of changed files, change
type (add, modify, delete) and so on.
Use them wisely. You will need
project_loc, resource_loc and so on.
See picture at end to see how to get
other available variables that can be
passed to the script.
for each file update, then it can be
slow. If it is slow anyway, then you can create a builder plugin for eclipse, which is not so complicated. I created some before.
not only one file as changed, but a
list.