Principal > lang > seek 
 en fr de it nl pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh zh_TW eo
Previo  Siguiente  Editar  Renombrar  Deshacer  Buscar  Administración  
Documentación  
¡Precaución! La página no está traducida.  Véase la versión inglesa 
SEEK
SEEK [ # ] Stream , Position

Defines the position of the Flujo pointer, for the next read/write operation.

If Position is negative, then the Flujo pointer is moved relatively to the end of the file.

To move the Flujo pointer after the end of the file, you must use the Lof function.

Ejemplo

' Move to the beginning of the file
SEEK #hFile, 0

' Move after the end of the file
SEEK #hFile, Lof(#hFile)

' Move 100 bytes before the end of the file
SEEK #hFile, -100

Véase también

Flujos y funciones de Entrada/Salida, Stream