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

    Faster way to read the raw data on disk/drive

    I wonder if there are any faster ways to read the raw data on disk/drive under Windows.

    Currently I am using Windows API CreateFile:

    CreateFile("\\.\PHYSICALDRIVE2", ...)

    and

    CreateFile(\\.\C:,...)

    to read the raw data on disk or drive. But I want to find a faster way

  2. #2
    Join Date
    Dec 2007
    Posts
    5

    Re: Faster way to read the raw data on disk/drive

    Can you use file mapping to view raw data? I've used this before to speed up general file usage speeds, not raw data though...?

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