Files
2025-10-25 03:02:53 +03:00

1.5 KiB
Raw Permalink Blame History

[fs.op.exists]

31 Input/output library [input.output]

31.12 File systems [filesystems]

31.12.13 Filesystem operation functions [fs.op.funcs]

31.12.13.14 Exists [fs.op.exists]

🔗

bool filesystem::exists(file_status s) noexcept;

1

#

Returns: status_known(s) && s.type() != file_type::not_found.

🔗

bool filesystem::exists(const path& p); bool filesystem::exists(const path& p, error_code& ec) noexcept;

2

#

Let s be a file_status, determined as if by status(p) or status(p, ec), respectively.

3

#

Effects: The signature with argument ec calls ec.clear() if status_known(s).

4

#

Returns: exists(s).

5

#

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