robotpath
abspath(path, case_normalize=False)
¶
Replacement for os.path.abspath with some enhancements and bug fixes.
- Non-Unicode paths are converted to Unicode using file system encoding.
- Optionally lower-case paths on case-insensitive file systems. That includes Windows and also OSX in default configuration.
- Turn
c:
intoc:\
on Windows instead ofc:\current\path
.
Source code in src/robot/utils/robotpath.py
get_link_path(target, base)
¶
Returns a relative path to target
from base
.
If base
is an existing file, then its parent directory is considered to
be the base. Otherwise base
is assumed to be a directory.
The returned path is URL encoded. On Windows returns an absolute path with
file:
prefix if the target is on a different drive.
Source code in src/robot/utils/robotpath.py
normpath(path, case_normalize=False)
¶
Replacement for os.path.normpath with some enhancements.
- Convert non-Unicode paths to Unicode using the file system encoding.
- NFC normalize Unicode paths (affects mainly OSX).
- Optionally lower-case paths on case-insensitive file systems. That includes Windows and also OSX in default configuration.
- Turn
c:
intoc:\
on Windows instead of keeping it asc:
.