eclipse工作空间里的RemoteSystemsTempFiles项目有何作用?

标签:
it |
分类: java |
eclipse工作空间里的RemoteSystemsTempFiles项目有何作用?
补充:由于RemoteSystemsTempFiles项目总是自动生成,怎么删除掉?
分享
默认排序按时间排序
2 个回答
这个东西是用来做远程文件本地缓存使用的,建议不要删除。eclipse有一个“Remote System
ExExplorer”的Perspective,里边有FTP、ssh、Linux、Unix、Windows、Telnet等各种远程终端功能,这些功能依赖于“RemoteSystemsTempFiles”。
分享
焚琴煮鹤 想努力认真生活的拖延症患者
具体作用不知道,删除的方法是有的。
1、打开Windows-->Preferences-->General-->Startup and
Shutdown将“RSE UI”的选中状态去掉,关闭Eclipse;
2、打开Eclipse工作空间将“RemoteSystemsTempFiles”项目删除掉后再启动Eclipse程序,就不会再自动生成了。
亲测有效。
……抄了答案还是放上原链接吧:
在网上找到一段这样的信息,不知道对你是否有帮助。
The approach RSE uses for downloading and uploading is a design
decision. When opening a file for editing, RSE downloads to the
RemoteSystemsTempFiles project so that the file can be edited as an
IFile using standard Eclipse editors. This project is a local cache
of downloaded files with associated information like timestamps to
allow for in-place editing. This is true even in the case of a
Local file subsystem, where download() and upload() methods are
essentially copying files - the RSE framework treats the local file
subsystem the same as any other remote file subsystem. The
mechanism used for transfering files between different systems
follows the pattern of first downloading to the
RemoteSystemsTempFiles project if necessary (like in the editor
scenario) and then uploading to the target Remote file subsystem to
maintain consistency. As a rule, things can get problemmatic when
one subsystem makes assumptions about other subsystems so no
special exceptions are made for things like transfering to
local.
分享