Shifts the file pointer to the given position. The file must be opened with seekable option
fileSeek(file, position)
→ returns void
<cfscript>
NewFile = fileOpen(expandPath(".") & " est.txt","write","",true);
fileSeek(#NewFile#,0);
</cfscript>