Use Application.persistentDataPath for persistent save data.

using System.IO;

string path = Path.Combine(
    Application.persistentDataPath,
    "save.json"
);

The actual folder depends on the platform.

Do not store player save files inside the project's Assets folder.