◐ Shell
clean mode source ↗

std::remove – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

definiert in Header

<cstdio>

int remove( const char *fname );

Löscht die Datei Zeichenkette identifiziert, auf die fname .

Original:

Deletes the file identified by character string pointed to by fname.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parameter

fname -

Zeiger auf einen null-terminierten String, der den Pfad identifiziert die Datei zu löschen

Original:

pointer to a null-terminated string containing the path identifying the file to delete

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Rückgabewert

0 auf Erfolg oder Nicht-Null-Wert auf Fehler .

Original:

0 upon success or non-zero value on error.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Beispiel

Siehe auch