Path Utilities (bpy.path)

This module has a similar scope to os.path, containing utility functions for dealing with paths in Blender.

bpy.path.abspath(path)

Returns the absolute path relative to the current blend file using the “//” prefix.

bpy.path.clean_name(name, replace='_')

Returns a name with characters replaced that may cause problems under various circumstances, such as writing to a file. All characters besides A-Z/a-z, 0-9 are replaced with “_” or the replace argument if defined.

bpy.path.display_name(name)

Creates a display string from name to be used menus and the user interface. Capitalize the first letter in all lowercase names, mixed case names are kept as is. Intended for use with filenames and module names.

bpy.path.ensure_ext(filepath, ext, case_sensitive=False)

Return the path with the extension added its its not alredy set.

Parameters:
  • ext (string) – The extension to check for.
  • case_sensitive (bool) – Check for matching case when comparing extensions.
bpy.path.relpath(path, start=None)

Returns the path relative to the current blend file using the “//” prefix.

Parameters:
  • start (string) – Relative to this path, when not set the current filename is used.
bpy.path.resolve_ncase(path)

Resolve a case insensitive path on a case sensitive system, returning a string with the path if found else return the original path.

Previous topic

Utilities (bpy.utils)

Next topic

Application Data (bpy.app)