Use System.IO for file operations.

using System.IO;

Write:

File.WriteAllText(
    path,
    content
);

Read:

string content =
    File.ReadAllText(path);

Check:

File.Exists(path)

Delete:

File.Delete(path);

Combine file storage with JSON for structured save files.