FileSeek

Moves the buffer cursor position forward the number of characters specified by the position argument

Method Signature

FileSeek(file=[any], position=[integer])

Arguments

Argument
Type
Required
Description
Default

file

any

true

The File instance

position

integer

true

The cursor position to move forward in the file

Examples

Script Syntax

<bx:script>
	NewFile = fileOpen( expandPath( "." ) & "	est.txt", "write", "", true );
	fileSeek( NewFile, 5 );
</bx:script>
   

Last updated

Was this helpful?