| c# Programming Glossary: lpnewfilepointerInsert bytes into middle of a file (in windows filesystem) without reading entire file (using File Allocation Table)? http://stackoverflow.com/questions/13430210/insert-bytes-into-middle-of-a-file-in-windows-filesystem-without-reading-entir  SafeFileHandle hFile long liDistanceToMove out long lpNewFilePointer SeekOrigin dwMoveMethod We'll use these nasty win32 beasts thusly.. Console.WriteLine Jumping to Master File Table... long lpNewFilePointer if NativeMethods.SetFilePointerEx fileHandle bootSector.GetMftAbsoluteIndex.. fileHandle bootSector.GetMftAbsoluteIndex  out lpNewFilePointer SeekOrigin.Begin  throw new Win32Exception Console.WriteLine.. 
 C# classes to undelete files? [duplicate] http://stackoverflow.com/questions/8819188/c-sharp-classes-to-undelete-files  IntPtr hFile long liDistanceToMove ref long lpNewFilePointer uint dwMoveMethod Set offset int bufferSize 512 byte buffer.. 
 |