Community
Participate
Working Groups
Eclipse 3.7 introduces the "Refresh on access" preference settings and functionality which is tremendous useful. Unfortunately it seems that this setting does not refresh folder if their content has changed. I think that would be a great enhancements. To test, create a new folder, add some files outside of Eclipse and try to delete it.
Right. It was designed this way. James, do you plan to look at refreshing folders the same way?
I think this should be WONT_FIX as I don't think we can do this without paying a *very* high I/O penalty. The resource tree is fast because iterating over it acts on the in memory tree only. The refresh-on-access for files is somewhat different, in that we only refresh when the API-user is fetching the contents of the file. i.e. they're already initiating I/O. Refresh automatically would be better than always stat()ing on access. Failing that we should add refresh providers for other non-Windows platforms.
I agree. We should rather look at native refresh providers for non-Windows platforms.