Reputation: 26655
I'm a newbie and I'm using the IBM RAD which is based on Eclipse. After install I deleted some files that seemed not needed in C:\workspace. Now I get this error:
"Periodic workspace table can not be saved, file could not be found, could not save file table to C:\workspace.metadata..."
Could you tell what I should do to resolve the error? Thanks
Upvotes: 5
Views: 17089
Reputation: 11
This probably happened beacuse you deleted .metadata folder in your workspace folder in "my documents" folder in windows. Solution: Reinstall
Upvotes: 0
Reputation: 11
This error message happened to me when I was copying old project files and importing (all) files to new project. I did following and solved the issue:
Upvotes: 1
Reputation: 3813
If you get this error in Linux environment, just update the ownership of the file below, and make the owner as same as the owner of the workspace folder:
<workspace>/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources
This solution works for Eclipse version 4.3
Upvotes: 4
Reputation: 32934
Restore the files you deleted.
If you have no way to do that, create a new workspace (File > Switch Workspace > Other...) and then import your projects from the old one into the new one.
Upvotes: 2