I am trying to write a .csv file to save the user's actions and collect it later from the device. I have tried on my computer and it works but I can't seem to get it to work in the Oculus Quest.
My code goes like:
using (var writer = new StreamWriter($"{Application.persistentDataPath}/{_fileName}"))
using (var csv = new CsvWriter(writer))
{
csv.WriteRecords(metrics);
}