Type to handle file reading and writing operations. File type. This is used to permanently store data into the user device's file system and to read from it. This can be used to store game save data or player configuration files, for example. Here's a sample on how to write and read from a file: [codeblocks] [gdscript] func save(content): var file = File.new() file.open("user://save_game.dat", File.WRITE) file.store_string(content) file.close() func load(): var file = File.new() file.open("user://save_game.dat", File.READ) var content = file.get_as_text() file.close() return content [/gdscript] [csharp] public void Save(string content) { var file = new File(); file.Open("user://save_game.dat", File.ModeFlags.Write); file.StoreString(content); file.Close(); } public string Load() { var file = new File(); file.Open("user://save_game.dat", File.ModeFlags.Read); string content = file.GetAsText(); file.Close(); return content; } [/csharp] [/codeblocks] In the example above, the file will be saved in the user data folder as specified in the [url=https://docs.godotengine.org/en/latest/tutorials/io/data_paths.html]Data paths[/url] documentation. [b]Note:[/b] To access project resources once exported, it is recommended to use [ResourceLoader] instead of the [File] API, as some files are converted to engine-specific formats and their original source files might not be present in the exported PCK package. [b]Note:[/b] Files are automatically closed only if the process exits "normally" (such as by clicking the window manager's close button or pressing [b]Alt + F4[/b]). If you stop the project execution by pressing [b]F8[/b] while the project is running, the file won't be closed as the game process will be killed. You can work around this by calling [method flush] at regular intervals. https://docs.godotengine.org/en/latest/tutorials/scripting/filesystem.html https://godotengine.org/asset-library/asset/676 Closes the currently opened file and prevents subsequent read/write operations. Use [method flush] to persist the data to disk without closing the file. Returns [code]true[/code] if the file cursor has already read past the end of the file. [b]Note:[/b] [code]eof_reached() == false[/code] cannot be used to check whether there is more data available. To loop while there is more data available, use: [codeblocks] [gdscript] while file.get_position() < file.get_length(): # Read data [/gdscript] [csharp] while (file.GetPosition() < file.GetLength()) { // Read data } [/csharp] [/codeblocks] Returns [code]true[/code] if the file exists in the given path. [b]Note:[/b] Many resources types are imported (e.g. textures or sound files), and their source asset will not be included in the exported game, as only the imported version is used. See [method ResourceLoader.exists] for an alternative approach that takes resource remapping into account. Writes the file's buffer to disk. Flushing is automatically performed when the file is closed. This means you don't need to call [method flush] manually before closing a file using [method close]. Still, calling [method flush] can be used to ensure the data is safe even if the project crashes instead of being closed gracefully. [b]Note:[/b] Only call [method flush] when you actually need it. Otherwise, it will decrease performance due to constant disk writes. Returns the next 16 bits from the file as an integer. See [method store_16] for details on what values can be stored and retrieved this way. Returns the next 32 bits from the file as an integer. See [method store_32] for details on what values can be stored and retrieved this way. Returns the next 64 bits from the file as an integer. See [method store_64] for details on what values can be stored and retrieved this way. Returns the next 8 bits from the file as an integer. See [method store_8] for details on what values can be stored and retrieved this way. Returns the whole file as a [String]. Text is interpreted as being UTF-8 encoded. Returns next [code]length[/code] bytes of the file as a [PackedByteArray]. Returns the next value of the file in CSV (Comma-Separated Values) format. You can pass a different delimiter [code]delim[/code] to use other than the default [code]","[/code] (comma). This delimiter must be one-character long, and cannot be a double quotation mark. Text is interpreted as being UTF-8 encoded. Text values must be enclosed in double quotes if they include the delimiter character. Double quotes within a text value can be escaped by doubling their occurrence. For example, the following CSV lines are valid and will be properly parsed as two strings each: [codeblock] Alice,"Hello, Bob!" Bob,Alice! What a surprise! Alice,"I thought you'd reply with ""Hello, world""." [/codeblock] Note how the second line can omit the enclosing quotes as it does not include the delimiter. However it [i]could[/i] very well use quotes, it was only written without for demonstration purposes. The third line must use [code]""[/code] for each quotation mark that needs to be interpreted as such instead of the end of a text value. Returns the next 64 bits from the file as a floating-point number. Returns the last error that happened when trying to perform operations. Compare with the [code]ERR_FILE_*[/code] constants from [enum Error]. Returns the next 32 bits from the file as a floating-point number. Returns the size of the file in bytes. Returns the next line of the file as a [String]. Text is interpreted as being UTF-8 encoded. Returns an MD5 String representing the file at the given path or an empty [String] on failure. Returns the last time the [code]file[/code] was modified in Unix timestamp format or returns a [String] "ERROR IN [code]file[/code]". This Unix timestamp can be converted to another format using the [Time] singleton. Returns a [String] saved in Pascal format from the file. Text is interpreted as being UTF-8 encoded. Returns the path as a [String] for the current open file. Returns the absolute path as a [String] for the current open file. Returns the file cursor's position. Returns the next bits from the file as a floating-point number. Returns a SHA-256 [String] representing the file at the given path or an empty [String] on failure. Returns the next [Variant] value from the file. If [code]allow_objects[/code] is [code]true[/code], decoding objects is allowed. [b]Warning:[/b] Deserialized objects can contain code which gets executed. Do not use this option if the serialized object comes from untrusted sources to avoid potential security threats such as remote code execution. Returns [code]true[/code] if the file is currently opened. Opens the file for writing or reading, depending on the flags. Opens a compressed file for reading or writing. [b]Note:[/b] [method open_compressed] can only read files that were saved by Godot, not third-party compression formats. See [url=https://github.com/godotengine/godot/issues/28999]GitHub issue #28999[/url] for a workaround. Opens an encrypted file in write or read mode. You need to pass a binary key to encrypt/decrypt it. [b]Note:[/b] The provided key must be 32 bytes long. Opens an encrypted file in write or read mode. You need to pass a password to encrypt/decrypt it. Changes the file reading/writing cursor to the specified position (in bytes from the beginning of the file). Changes the file reading/writing cursor to the specified position (in bytes from the end of the file). [b]Note:[/b] This is an offset, so you should use negative numbers or the cursor will be at the end of the file. Stores an integer as 16 bits in the file. [b]Note:[/b] The [code]value[/code] should lie in the interval [code][0, 2^16 - 1][/code]. Any other value will overflow and wrap around. To store a signed integer, use [method store_64] or store a signed integer from the interval [code][-2^15, 2^15 - 1][/code] (i.e. keeping one bit for the signedness) and compute its sign manually when reading. For example: [codeblocks] [gdscript] const MAX_15B = 1 << 15 const MAX_16B = 1 << 16 func unsigned16_to_signed(unsigned): return (unsigned + MAX_15B) % MAX_16B - MAX_15B func _ready(): var f = File.new() f.open("user://file.dat", File.WRITE_READ) f.store_16(-42) # This wraps around and stores 65494 (2^16 - 42). f.store_16(121) # In bounds, will store 121. f.seek(0) # Go back to start to read the stored value. var read1 = f.get_16() # 65494 var read2 = f.get_16() # 121 var converted1 = unsigned16_to_signed(read1) # -42 var converted2 = unsigned16_to_signed(read2) # 121 [/gdscript] [csharp] public override void _Ready() { var f = new File(); f.Open("user://file.dat", File.ModeFlags.WriteRead); f.Store16(unchecked((ushort)-42)); // This wraps around and stores 65494 (2^16 - 42). f.Store16(121); // In bounds, will store 121. f.Seek(0); // Go back to start to read the stored value. ushort read1 = f.Get16(); // 65494 ushort read2 = f.Get16(); // 121 short converted1 = BitConverter.ToInt16(BitConverter.GetBytes(read1), 0); // -42 short converted2 = BitConverter.ToInt16(BitConverter.GetBytes(read2), 0); // 121 } [/csharp] [/codeblocks] Stores an integer as 32 bits in the file. [b]Note:[/b] The [code]value[/code] should lie in the interval [code][0, 2^32 - 1][/code]. Any other value will overflow and wrap around. To store a signed integer, use [method store_64], or convert it manually (see [method store_16] for an example). Stores an integer as 64 bits in the file. [b]Note:[/b] The [code]value[/code] must lie in the interval [code][-2^63, 2^63 - 1][/code] (i.e. be a valid [int] value). Stores an integer as 8 bits in the file. [b]Note:[/b] The [code]value[/code] should lie in the interval [code][0, 255][/code]. Any other value will overflow and wrap around. To store a signed integer, use [method store_64], or convert it manually (see [method store_16] for an example). Stores the given array of bytes in the file. Store the given [PackedStringArray] in the file as a line formatted in the CSV (Comma-Separated Values) format. You can pass a different delimiter [code]delim[/code] to use other than the default [code]","[/code] (comma). This delimiter must be one-character long. Text will be encoded as UTF-8. Stores a floating-point number as 64 bits in the file. Stores a floating-point number as 32 bits in the file. Appends [code]line[/code] to the file followed by a line return character ([code]\n[/code]), encoding the text as UTF-8. Stores the given [String] as a line in the file in Pascal format (i.e. also store the length of the string). Text will be encoded as UTF-8. Stores a floating-point number in the file. Appends [code]string[/code] to the file without a line return, encoding the text as UTF-8. Stores any Variant value in the file. If [code]full_objects[/code] is [code]true[/code], encoding objects is allowed (and can potentially include code). [b]Note:[/b] Not all properties are included. Only properties that are configured with the [constant PROPERTY_USAGE_STORAGE] flag set will be serialized. You can add a new usage flag to a property by overriding the [method Object._get_property_list] method in your class. You can also check how property usage is configured by calling [method Object._get_property_list]. See [enum PropertyUsageFlags] for the possible usage flags. If [code]true[/code], the file is read with big-endian [url=https://en.wikipedia.org/wiki/Endianness]endianness[/url]. If [code]false[/code], the file is read with little-endian endianness. If in doubt, leave this to [code]false[/code] as most files are written with little-endian endianness. [b]Note:[/b] [member big_endian] is only about the file format, not the CPU type. The CPU endianness doesn't affect the default endianness for files written. [b]Note:[/b] This is always reset to [code]false[/code] whenever you open the file. Therefore, you must set [member big_endian] [i]after[/i] opening the file, not before. Opens the file for read operations. The cursor is positioned at the beginning of the file. Opens the file for write operations. The file is created if it does not exist, and truncated if it does. Opens the file for read and write operations. Does not truncate the file. The cursor is positioned at the beginning of the file. Opens the file for read and write operations. The file is created if it does not exist, and truncated if it does. The cursor is positioned at the beginning of the file. Uses the [url=https://fastlz.org/]FastLZ[/url] compression method. Uses the [url=https://en.wikipedia.org/wiki/DEFLATE]DEFLATE[/url] compression method. Uses the [url=https://facebook.github.io/zstd/]Zstandard[/url] compression method. Uses the [url=https://www.gzip.org/]gzip[/url] compression method.