ansible.builtin.normpath filter – Normalize a pathname
Note
This filter plugin is part of ansible-core
and included in all Ansible
installations. In most cases, you can use the short
plugin name
normpath
even without specifying the collections:
keyword.
However, we recommend you use the FQCN for easy linking to the
plugin documentation and to avoid conflicting with other collections that may have
the same filter plugin name.
New in ansible-core 2.15
Synopsis
Returns the normalized pathname by collapsing redundant separators and up-level references.
Input
This describes the input of the filter, the value before | ansible.builtin.normpath
.
Parameter |
Comments |
---|---|
A path. |
See Also
See also
- ansible.builtin.basename filter plugin
get a path’s base name.
Examples
# To get a normalized path (ex. '/foo/bar') from the path (ex. '/foo//bar')
{{ path | normpath }}
Return Value
Key |
Description |
---|---|
The normalized path from the path given. Returned: success |