Skip to content

Commit

Permalink
Merge pull request #9908 from Calinou/file-paths-string-methods
Browse files Browse the repository at this point in the history
Document file path String methods in File paths in Godot projects
  • Loading branch information
mhilbrunner authored Oct 4, 2024
2 parents c1c018f + da9e6ea commit be73f38
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions tutorials/io/data_paths.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,23 @@ This makes it possible to work with paths returned by other Windows
applications. We still recommend using only forward slashes in your own code to
guarantee that everything will work as intended.

.. tip::

The String class offers over a dozen methods to work with strings that represent file paths:

- :ref:`String.filecasecmp_to() <class_String_method_filecasecmp_to>`
- :ref:`String.filenocasecmp_to() <class_String_method_filenocasecmp_to>`
- :ref:`String.get_base_dir() <class_String_method_get_base_dir>`
- :ref:`String.get_basename() <class_String_method_get_basename>`
- :ref:`String.get_extension() <class_String_method_get_extension>`
- :ref:`String.get_file() <class_String_method_get_file>`
- :ref:`String.is_absolute_path() <class_String_method_is_absolute_path>`
- :ref:`String.is_relative_path() <class_String_method_is_relative_path>`
- :ref:`String.is_valid_filename() <class_String_method_is_valid_filename>`
- :ref:`String.path_join() <class_String_method_path_join>`
- :ref:`String.simplify_path() <class_String_method_simplify_path>`
- :ref:`String.validate_filename() <class_String_method_validate_filename>`

Accessing files in the project folder (``res://``)
--------------------------------------------------

Expand Down

0 comments on commit be73f38

Please sign in to comment.