30 Input/output library [input.output]

30.10 File systems [filesystems]

30.10.34 Filesystem operation functions [fs.op.funcs]

30.10.34.13 Exists [fs.op.exists]

bool exists(file_status s) noexcept;

Returns: status_­known(s) && s.type() != file_­type​::​not_­found.

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

Позвольте s быть a file_­status, определяемым, как если бы по status(p) или status(p, ec), соответственно.

Effects: Подпись с аргументом ec вызывает ec.clear() if status_­known(s).

Returns: exists(s).

Throws: Как указано в [fs.err.report].