std::remove
Aus cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
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.
You can help to correct and verify the translation. Click here for instructions.
Inhaltsverzeichnis |
[Bearbeiten] 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. |
[Bearbeiten] 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.
You can help to correct and verify the translation. Click here for instructions.
[Bearbeiten] Beispiel
This section is incomplete Reason: no example |
[Bearbeiten] Siehe auch
benennt eine Datei Original: renames a file The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
C documentation for remove
|