CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2003
    Posts
    58

    Write/Read File in low level Program ?

    how can I Write/Read file in low level directly into Disk, without using ReadFile /WriteFile.
    I mean Read/write directly to Disk Sector.
    what is Dos File Format, Window file format
    Last edited by SilentJackqh; January 19th, 2004 at 08:23 AM.

  2. #2
    Join Date
    Aug 2002
    Location
    Hamburg / Germany
    Posts
    280
    Why do you not easily use the standard-c-library-functions ?

    There is a set of functions inside that provides you with the possibility to write "old-school - low-level" file-access.

    Look in your compiler help for the functions "open", "close", "read" and "write" or "fopen", "fclose", "fwrite" and "fread".

    Have fun

    Juergen

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured