For reasons I can’t disclose, I am required to setup my project with JUCE_STRING_UTF_TYPE=32.
Has anybody encountered crashes when trying to iterate through a directory using a DirectoryIterator, with the flag specified as such? (Only tested on Windows, x86 application)
Here’s a basic example:
DirectoryIterator iterator (File::getSpecialLocation (File::userDesktopDirectory), false);
while (iterator.next()) //Crashes on iteration
DBG (iterator.getFile().getFullPathName());