Local of preference data on Device

Hi everyone! I used sys.save api to save game data. Now I want to know where it was saved on deviced?
PC, Android, IOS… Can I find it at where? I want to find it for manual edit data to testing.

Before sys.save you use sys.get_save_file, right? This returns a string to your path, so all you need to do is print it out.

local file = sys.get_save_file("game", "file")
print(file)
sys.save(...) 
2 Likes