Tag Limits/Character Set

Easy Save 2 has been replaced by Easy Save 3, so is no longer supported.
Locked
sjarman
Posts: 2
Joined: Mon Nov 07, 2016 3:50 am

Tag Limits/Character Set

Post by sjarman »

Are there any limits to the length of tags? What characters can tags contain - i.e. can they contain spaces, special characters (e.g. @) etc.

I'm having an issue where anything I use a tag on, does not result in a file being created. But, if I don't use tags, the files ARE created.

e.g.

ES2.Save(value, string.Format("{0}.txt?tag={1}@{2}@s", CurrentSaveName, guid == "" ? CurrentSaveGuid : guid, key).Replace(" ", ""));
does not result in a file, though it doesn't produce any error.
CurrentSaveName has spaces in it, and the "key" might have spaces and colons. I've tried replacing all spaces after the fact, in case that was the issue, but that hasn't helped.

This:
ES2.Save(saveKeysString, "savekeys.txt");
works fine, and the file is created.
User avatar
Joel
Moodkie Staff
Posts: 4849
Joined: Wed Nov 07, 2012 10:32 pm

Re: Tag Limits/Character Set

Post by Joel »

Hi there,

There should not be any limit as it's all written to binary. Would you be able to get the actual values of the filenames and tags after you've performed your string.Format line which are causing the error?

All the best,
Joel
Joel @ Moodkie Interactive
Purchase Easy Save | Contact | Guides | Docs | Getting started
Locked