diff --git a/doc/classes/FileAccess.xml b/doc/classes/FileAccess.xml
index 261e039cb03..425d88c55ac 100644
--- a/doc/classes/FileAccess.xml
+++ b/doc/classes/FileAccess.xml
@@ -463,12 +463,14 @@
Opens the file for write operations. The file is created if it does not exist, and truncated if it does.
+ [b]Note:[/b] When creating a file it must be in an already existing directory. To recursively create directories for a file path, see [method DirAccess.make_dir_recursive]).
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.
+ [b]Note:[/b] When creating a file it must be in an already existing directory. To recursively create directories for a file path, see [method DirAccess.make_dir_recursive]).
Uses the [url=https://fastlz.org/]FastLZ[/url] compression method.