REMOVE - delete a file.

(ANSI Standard)

Usage:

#include <stdio.h>
stat = remove( filename );

Where:

const char *filename;
is the name of the file you want to delete.
int stat;
is zero if the operation succeeds and non-zero otherwise.

Description:

"remove" deletes a file from the file system. The file should not currently be open.

Copyright © 1996, Thinkage Ltd.