0 votes

Hi!
I created a test game to save data and I do not know where save the file.
This is my code(I use Linux):

func _ready():
get_tree().set_auto_accept_quit(false)
var fp : File = File.new()
fp.open("user://save_game.dat", File.WRITE)
fp.store_string("Hello World")
fp.close()
in Engine by (353 points)

You can use Project > Open Project Data Folder in the editor to open the project-specific data folder.

1 Answer

+2 votes
Best answer

According to official docs here:

Windows: %APPDATA%\Godot\
macOS: ~/Library/Application Support/Godot/
Linux: ~/.local/share/godot/

In my project on ubuntu, for example, is

/home/azagaya/.local/share/godot/app_userdata/Ineth/

Look that directory (with your username of course)

by (3,491 points)
selected by

Thanks.
I finded that directory activating the show hidden files option.

Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.