C++ Programming/Code/Standard C Library/Functions/remove

remove

Syntax
#include <cstdio>
int remove( const char *fname );

The remove() function erases the file specified by fname. The return value of remove() is zero upon success, and non-zero if there is an error.

Related topics
rename
Category:Book:C++ Programming#Code/Standard%20C%20Library/Functions/remove%20
Category:Book:C++ Programming