Page 1 of 1

Need help with saveVars and loadVars

PostPosted: Thu Oct 06, 2011 9:59 pm
by VertigoKeyz
I am having a major problem trying to get saveVars and loadVars to work with a subfolder. When I use the code...

Code: Select all
saveVars("qfile_000.jqf", "Category");


...it creates the file and loadVars access it just fine. But when I try...

Code: Select all
saveVars("qfiles/qfile_000.jqf", "Category");


...it does nothing. Please help me correct my syntax for using subfolders before I go even balder.

Thanks!

Re: Need help with saveVars and loadVars

PostPosted: Thu Oct 06, 2011 10:49 pm
by skydereign
You can't use sub directories. Since gE parses the save string, it sees the / and therefore has it do nothing.

Re: Need help with saveVars and loadVars

PostPosted: Mon Oct 10, 2011 6:06 pm
by VertigoKeyz
Much obliged, as sadly inconvenient as that is. :(