Setfilepointer

[DllImport("Kernel32.dll", SetLastError = true)]
public static extern uint SetFilePointer(IntPtr hFile,
   int lDistanceToMove,
   IntPtr lpDistanceToMoveHigh,
   uint dwMoveMethod
);

Microsoft documentation: Link

Last updated