std::ftell
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. |
<metanoindex/>
<tbody> </tbody>| Déclaré dans l'en-tête <cstdio>
|
||
long ftell( std::FILE* stream ); |
||
Retourne la valeur courante de l'indicateur de position du flux
stream fichier .Original:
Returns the current value of the file position indicator for the file stream
stream.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.
Si le flux est ouvert en mode binaire, la valeur obtenue par cette fonction est le nombre d'octets à partir du début du fichier .
Original:
If the stream is open in binary mode, the value obtained by this function is the number of bytes from the beginning of the file.
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.
Si le flux est ouvert en mode texte, la valeur retournée par cette fonction n'est pas spécifié et n'a de sens que l'entrée de std::fseek
Original:
If the stream is open in text mode, the value returned by this function is unspecified and is only meaningful as the input to std::fseek
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.
Paramètres
| stream | - | déposer flux d'examiner
Original: file stream to examine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Retourne la valeur
Déposer indicateur de position en cas de succès ou
-1L en cas d'échec. Définit également errno en cas d'échec .Original:
File position indicator on success or
-1L if failure occurs. Also sets errno 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.
Exemple
| This section is incomplete Reason: no example |
Voir aussi
obtient l'indicateur de position Original: gets the file position indicator The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) | |
déplace l'indicateur de position de fichier à un emplacement spécifique dans un fichier Original: moves the file position indicator to a specific location in a file The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) | |
déplace l'indicateur de position de fichier à un emplacement spécifique dans un fichier Original: moves the file position indicator to a specific location in a file The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) | |
C documentation for ftell
| |