Files
cppdraft_translate/cppdraft/fs/op/canonical.md
2025-10-25 03:02:53 +03:00

1.3 KiB

[fs.op.canonical]

31 Input/output library [input.output]

31.12 File systems [filesystems]

31.12.13 Filesystem operation functions [fs.op.funcs]

31.12.13.3 Canonical [fs.op.canonical]

🔗

path filesystem::canonical(const path& p); path filesystem::canonical(const path& p, error_code& ec);

1

#

Effects: Converts p to an absolute path that has no symbolic link, dot, or dot-dot elements in its pathname in the generic format.

2

#

Returns: A path that refers to the same file system object as absolute(p).

The signature with argument ec returns path() if an error occurs.

3

#

Throws: As specified in [fs.err.report].

4

#

Remarks: !exists(p) is an error.