description | title | ms.date | api_name | api_location | api_type | topic_type | f1_keywords | helpviewer_keywords | |||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Learn more about: remove, _wremove |
remove, _wremove |
4/2/2020 |
|
|
|
|
|
|
Delete a file.
int remove(
const char *path
);
int _wremove(
const wchar_t *path
);
path
Path of file to be removed.
Each of these functions returns 0 if the file is successfully deleted. Otherwise, it returns -1 and sets errno
either to EACCES
to indicate that the path specifies a read-only file, specifies a directory, or the file is open, or to ENOENT
to indicate that the filename or path wasn't found.
For more information about return codes, see errno
, _doserrno
, _sys_errlist
, and _sys_nerr
.
The remove
function deletes the file specified by path
. _wremove
is a wide-character version of _remove
; the path
argument to _wremove
is a wide-character string. _wremove
and _remove
behave identically otherwise. All handles to a file must be closed before it can be deleted.
By default, this function's global state is scoped to the application. To change this behavior, see Global state in the CRT.
TCHAR.H routine |
_UNICODE and _MBCS not defined |
_MBCS defined |
_UNICODE defined |
---|---|---|---|
_tremove |
remove |
remove |
_wremove |
Routine | Required header |
---|---|
remove |
<stdio.h> or <io.h> |
_wremove |
<stdio.h> or <wchar.h> |
For more compatibility information, see Compatibility.
All versions of the C run-time libraries.
// crt_remove.c
/* This program uses remove to delete crt_remove.txt */
#include <stdio.h>
int main( void )
{
if( remove( "crt_remove.txt" ) == -1 )
perror( "Could not delete 'CRT_REMOVE.TXT'" );
else
printf( "Deleted 'CRT_REMOVE.TXT'\n" );
}
This file will be deleted.
Deleted 'CRT_REMOVE.TXT'