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

1.5 KiB

[fs.op.remove]

31 Input/output library [input.output]

31.12 File systems [filesystems]

31.12.13 Filesystem operation functions [fs.op.funcs]

31.12.13.31 Remove [fs.op.remove]

🔗

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

1

#

Effects: If exists(symlink_status(p, ec)), the file p is removed as if by POSIX remove.

[Note 1:

A symbolic link is itself removed, rather than the file it resolves to.

— end note]

2

#

Postconditions: exists(symlink_status(p)) is false.

3

#

Returns: true if a file p has been removed and false otherwise.

[Note 2:

Absence of a file p is not an error.

— end note]

4

#

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