Revit 2026 changed how cloud model caches can be configured, and BIM Cache Cleaner wasn’t picking that up properly.
In Revit.ini, Revit now allows the cloud cache to be redirected using:
[CloudModelCache]
CacheLocation=...
On a few machines I tested, [Directories] ProjectPath was empty, but CacheLocation was set. BIM Cache Cleaner was still scanning the default location:
%LocalAppData%\Autodesk\Revit
So it simply never saw the real cache.
In 3.5.3, the scanner now checks CacheLocation first. If it’s present and valid, that’s the path it uses. If not, it falls back to the default. That fixes cache discovery for Revit 2026 users who’ve customised their setup.
While fixing that, I did a small amount of internal cleanup to make future changes less brittle.
I added a basic dotnet test project so there’s at least a sanity check without having to mockup cache folders for various Revit versions before shipping changes. It’s not exhaustive, but it’s better than relying on manual testing alone.
I also wrapped filesystem access behind a simple IFileSystem interface. That pulls file and directory operations (and timestamp handling) into one place and reduces duplication between the normal scan and the quarantine scan. Behaviour stays the same; the code is just easier to reason about when path logic gets weird.
I also took this as an opportunity to try out Claude Code combined it with GLM5 to help investigate the Revit 2026 config and help with some of the refactor. First time using an AI coding tool, and it worked out quite well. I kept the scope tight, worked in small steps, and manually checked every change before it went anywhere near a release.
Version 3.5.3
- Fixed: Custom cloud cache locations set via CacheLocation are now detected.
- Improved: More robust handling of non‑standard cache paths.
- Internal: Basic test harness and simplified filesystem access.
If you’re on Revit 2026 or newer and your cache lives somewhere non‑standard, this update should behave a lot better.
If it doesn’t, let me know in the comments.
As always, you can download the BIM Cache Cleaner right here at revit.com.au


























