std::fopen
De 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. |
Definido en la cabecera <cstdio>
|
||
FILE *fopen( const char *filename, const char *mode ); |
||
Abre un archivo indicado por
filename
y devuelve una secuencia de archivo asociado con ese archivo. mode
se utiliza para determinar el modo de acceso de archivo . Original:
Opens a file indicated by
filename
and returns a file stream associated with that file. mode
is used to determine the file access mode. 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.
[editar] Parámetros
filename | - | nombre de archivo para asociar la secuencia de archivo para
Original: file name to associate the file stream to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
mode | - | terminada en nulo de serie de caracteres para determinar el modo de acceso a archivos
Original: null-terminated character string determining file access mode
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[editar] Valor de retorno
Inaugurado secuencia de archivo en caso de éxito, NULL en caso de fallo
Original:
Opened file stream on success, NULL on failure
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.
[editar] Ver también
cierra un archivo Original: closes a file The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) | |
sincroniza un flujo de salida con el archivo real Original: synchronizes an output stream with the actual file The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) | |
abrir una secuencia existente con un nombre diferente Original: open an existing stream with a different name The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) | |
Documentacion C de fopen
|