fileSkipBytes

Shifts the file pointer by the given number of bytes.

fileSkipBytes(file, skipCount) → returns void

Argument Reference

file any
Required

The file object

skipCount numeric
Required

The number of bytes that must be skipped before the next file operation

Examples
Sample code invoking the fileSkipBytes function

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

Signup for cfbreak to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.

Fork me on GitHub