Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I develop with Eclipse (and Java) and regularly get the message "resource is out of sync with the filesystem". right-click | "Refresh" will always clear this.

Why can Eclipse not Refresh automatically when it finds this condition? Are there cases where you want the resource to be out of sync?.

If there are such conditions and they don't apply to my work, is there a way of getting Eclipse to Refresh automatically when it encounters this state?. (I appreciate that it should refresh as little as it needs to in normal development to increase performance for human developers.)

UPDATE (2012-06-25): My latest update (Version: Indigo Release Build id: 20110615-0604) no longer shows Preferences - General - Workspace - Refresh Automatically There is an option "Refresh on access" - should I use this?

share|improve this question
Why do you get the message? You might lose work if not careful. – Thorbjørn Ravn Andersen Dec 3 '10 at 12:10

6 Answers

up vote 63 down vote accepted

You can enable this in Preferences - General - Workspace - Refresh Automatically (called Refresh using native hooks or polling in newer builds)

The only reason I can think why this isn't enabled by default is performance related.

For example, refreshing source folders automatically might trigger a build of the workspace. Perhaps some people want more control over this.

There is also an article on the Eclipse site regarding auto refresh.

Basically, there is no external trigger that notifies Eclipse of files changed outside the workspace. Rather a background thread is used by Eclipse to monitor file changes that can possibly lead to performance issues with large workspaces.

share|improve this answer
+1 Does this only happen during this condition? Or will it happen enough to affect me elsewhere? – peter.murray.rust Dec 3 '10 at 8:43
I have Preferences - General - Workspace - Refresh Automatically. Is this the same? – peter.murray.rust Dec 3 '10 at 8:47
correct, edited the answer – ddewaele Dec 3 '10 at 8:50
1  
2  
It now seems to be called "Refresh using native hooks or polling" (Indigo SR1). – Oliver Bock Aug 14 '12 at 1:21
show 1 more comment

For the new Indigo version, the Preferences change to "Refresh on access", and with a detail explanation : Automatically refresh external workspace changes on access via the workspace.

As “resource is out of sync with the filesystem” this problem happens when I use external workspace, so after I select this option, problem solved.

share|improve this answer

Just right click on the file or on the project and click Refresh. The error will vanish. I also faced the same issue and it worked for me.

share|improve this answer
The OP mentioned that in his question, "'Refresh' will always clear this." The problem is that this is incredibly annoying when working with complex projects or in conjunction with tools external to Eclipse that are changing the file system. – ryanbrainard Oct 26 '12 at 18:50
@ryanbrainard +1 – peter.murray.rust Jan 4 at 10:43

This happens to me all the time.

Go to the error log, find the exception, and open a few levels until you can see something more like a root cause. Does it says "Resource is out of sync with the file system" ?

When renaming packages, of course, Eclipse has to move files around in the file system. Apparently what happens is that it later discovers that something it thinks it needs to clean up has been renamed, can't find it, throws an exception.

There are a couple of things you might try. First, go to Window: Preferences, Workspace, and enable "Refresh Automatically". In theory this should fix the problem, but for me, it didn't.

Second, if you are doing a large refactoring with subpackages, do the subpackages one at a time, from the bottom up, and explicitly refresh with the file system after each subpackage is renamed.

Third, just ignore the error: when the error dialog comes up, click Abort to preserve the partial change, instead of rolling it back. Try it again, and again, and you may find you can get through the entire operation using multiple retries.

share|improve this answer

If this occurs trying to delete a folder (on *nix) and Refresh does not help, open a terminal and look for a symlink below the folder you are trying to delete and remove this manually. This solved my issues.

share|improve this answer

restart the eclipse.it's solved my problem.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.