To expand the cleanup report, Symfony 2 cache cleanup operations move cached items to different folders during cleanup. Part of this process includes creating a cache / dev-new / and cache / dev-old / folders.
If you use Eclipse or another IDE that dynamically monitors subfolders in your project, the IDE will almost instantly detect the creation of a new folder and look at the new files in these folders (in Eclipse, I noticed that the DLTK module constantly does this to represent progress). Unfortunately, this may interfere with Symfony, which wants to rename and / or delete these folders.
In particular, with Eclipse Indigo on Windows 7 with a 64-bit version, you can remove the cache /, cache / dev /, cache / dev_old / and cache / dev_new / folders from the build path by right-clicking your project and choosing "Build Path > Customize the build path ... ". This did not initially affect me; I continued to see how the DLTK module is trying to index the cache folders. I ended up removing the Aptana Studio plug-in by closing all Editor documents, disabling Eclipse, manually deleting subfolders in the cache / folder, starting the Symfony cache: clean, then start Eclipse and reinstall Aptana. It seems to have worked so far.
Blake B.
source share