Skip to content

Disk raw data libraty manager. Read and write raw data on a disk.

Notifications You must be signed in to change notification settings

micheleceo/disk-raw-data-interface

Repository files navigation

Disk raw data manager libary

A simple C# library.

A few call allows you to read e write raw data on a DISK.

Example of reading

   DISK.SafeStreamManager myStream;
   
   string phyd = "\\\\.\\PHYSICALDRIVE1" //usually  "\\\\.\\PHYSICALDRIVE0" is C:
   
   myStream = DISK.CreateStream(phyd, FileAccess.Read);
   
   byte[] firstBlock = new byte[512];
   
   firstBlock = DISK.ReadBytes(0, 512, myStream);
   
   DISK.DropStream(myStream);
   

About

Disk raw data libraty manager. Read and write raw data on a disk.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages