std::remove
From Cppreference
| Defined in header <cstdio>
|
||
| int remove( const char *fname );
|
||
Deletes the file identified by character string pointed to by fname.
Contents |
[edit] Parameters
| s | - | pointer to a null-terminated string containing the path identifying the file to delete |
[edit] Return value
0 upon success or non-zero value on error.
[edit] Example
| This section is incomplete |
[edit] See also
| renames a file (function) |
|