Tips and Tricks

How to Query File Attributes 50x faster on Windows

TL;DR If your app scans thousands of files, the way you fetch file attributes can quietly destroy performance. Standard methods like GetFileAttributesEx or even std::filesystem are convenient but painfully slow at scale. By switching to faster Windows APIs like FindFirstFileEx or GetFileInformationByHandleEx , you can retrieve attributes while iterating directories, cutting expensive system…
Read more
Build Announcements

Visual Assist 2024.2 release post

It only has been a minute since the last performance-focused release but Visual Assist 2024.2 is here, squeezing even more performance to set it apart from other coding assistants! Continuing the theme of the last version, this release is focused on getting rid of…
Build Announcements

Visual Assist Build 2393 is Here!

We’re really making an effort to keep blogs more instructional or industry related, but man o’ man is this release worth a few lines. Our team has been working behind the scenes for much of the year on performance improvements. And sure, we could’ve just done a few things here and there over time to make it feel like we were consistently improving (which we are), but with this…
Read more