remove Subroutine
Purpose
Removes a file.
Library
Standard C Library (libc.a)
Syntax
#include <stdio.h>
int remove( FileName)
const char *FileName;
const char *FileName;
Description
The remove subroutine makes a file named by FileName inaccessible by that name. An attempt to open that file using that name does not work unless you recreate it. If the file is open, the subroutine does not remove it.
If the file designated by the FileName parameter has multiple links, the link count of files linked to the removed file is reduced by 1.
Parameters
Item | Description |
---|---|
FileName | Specifies the name of the file being removed. |
Return Values
Upon successful completion, the remove subroutine returns a value of 0; otherwise it returns a nonzero value.