Load e Save on device Android

Godot Version

4.3

Question

I’m new to Godot, I’m creating my first game, my problem is saving an entire scene as a checkpoint on my Android phone and then reloading it.

When I get to the save scene on my phone it creates the folder but I can’t find the file.

I’ll write you my saving code :

var node_to_save = self

var scene = PackedScene.new()

scene.pack(node_to_save)

ResourceSaver.save(scene,“user://storage/emulated/0/Android/data/com.gotocastle.mm/savedgame.tscn”)

$Timer.stop()

Thank you

Help me