I'm using v3.0.0-34-g86d03cc on linux. The documentation for PropertiesFile::Options::getDefaultFile() says this:
"On Linux it'll return ~/.[folderName]/[applicationName].[filenameSuffix]"
But when I use PropertiesFile and Options, it is missing the "." before the folder name. Should I specify the "." when I give it the folder name, or will that mess things up when I get around to compiling all this code for Windows?
Test:
appname="foo"
foldername="test"
filenamesuffix="conf"
options.getDefaultFile().getFullPathName()="/home/stephane/test/foo.conf"
expected="/home/stephane/.test/foo.conf"