relative_posix_path

glotaran.utils.io.relative_posix_path(source_path: StrOrPath, base_path: StrOrPath | None = None) str[source]

Ensure that source_path is a posix path, relative to base_path if defined.

On Windows if source_path and base_path are on different drives, it will return the absolute posix path to the file.

Parameters
  • source_path (StrOrPath) – Path which should be converted to a relative posix path.

  • base_path (StrOrPath, optional) – Base path the resulting path string should be relative to., by default None

Returns

source_path as posix path relative to base_path if defined.

Return type

str