I’m using juce 1.44, and my properties files are always showing up as folders rather than files, as they did under 1.41. My code looks like this:
File theFile (File::getSpecialLocation(File::userApplicationDataDirectory));
theFile = theFile.getChildFile(T(“foo”));
theFile = theFile.getChildFile(T(“bar”)).withFileExtension(T(".txt"));
PropertiesFile thePropertiesFile = new PropertiesFile(theFile, -1, PropertiesFile::storeAsXML);
Why is this creating a folder called bar.txt in the foo folder instead of a file?