cfdocs

fileSkipBytes

Shifts the file pointer by the given number of bytes.

fileSkipBytes(file, skipCount)
returns void

Argument Reference

Name Type Required Default Description
file any Yes   The file object
skipCount numeric Yes   The number of bytes that must be skipped before the next file operation

Script Syntax

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