Search found 3 matches

by kranwe
Thu Apr 07, 2016 9:43 am
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Can save to default file path but can't load
Replies: 3
Views: 8107

Re: Can save to default file path but can't load

Don't know if anyone will ever find this useful...

ES2.GetFiles will return a list of file names in a folder. Those could then be iterated over if you want to load data from a bunch of files.

http://docs.moodkie.com/easy-save-2/api/es2-getfiles/
by kranwe
Thu Apr 07, 2016 7:44 am
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Can save to default file path but can't load
Replies: 3
Views: 8107

Can save to default file path but can't load

How I save: //saving works completely fine. I can see the file in the file system. ES2.Save<GameLevelData>(data, "local_levels/someFileName"); Loading a file directly (not a directory) works. //no errors GameLevelData a = ES2.Load<GameLevelData>("local_levels/someFileName"); How ...