Click here to Skip to main content
15,867,308 members
Articles / Programming Languages / C++

CFloppyDisk 2.0

Rate me:
Please Sign up or sign in to vote.
4.91/5 (28 votes)
14 Feb 2002CPOL6 min read 259K   2.3K   35   72
A class for reading and writing floppy disk sectors directly [Win 95/98/ME/NT/2K/XP]

What this class is for?

CFloppyDisk is a class that allows you to read and write physical floppy disk sectors directly. The class provides static member functions for resetting the floppy disk controller, for reading a physical sector and for writing a physical sector. I am using the term, physical sector, to avoid confusion with absolute sectors.

Honestly, these three functions might as well have been put into a single header file and distributed as a sort of source code library. But I made it a class, so that people will find it easier to use it. These days people prefer classes for everything.

Why this class was made?

In Windows NT/2000 we can read and write directly onto a floppy disk by using the CreateFile API call. You can simply open \\.\A: 

Unfortunately this technique will not work under Windows 95, 98 and ME. This probably is an indicator that underneath the GUI, ME is more 98 than 2000 as is popularly believed. Well that shortcoming is now solved. This class will serve you well, I hope.

One class - Any OS

As I just mentioned there is a huge difference in the techniques used for directly accessing a floppy in the NT/2K set of Operating Systems and the Windows 9x/ME set of Operating Systems. With this class, you need not bother with what version of Windows your program will be running on. Internally the class has separate sets for functions, but the user can simply call the generic functions. The class will make the required OS version checks and call the appropriate function internally.

Requirements

  • You must be running one of Windows 95/98/ME/NT/2K/XP

Using the class.

There are three static functions which you can use. Thus you should not instantiate the class. Simply include the header file and call the static functions directly.

ResetDisk

static void ResetDisk()

ResetDisk resets the floppy disk controller and drive. It does not do anything to the floppy disk. But the floppy drive's read/write head will be recalibrated. Normally you might want to start off a series of reads and writes with a controller reset. But you must also use this when you get an error. If you do not reset the controller after an error, then consequent behavior of the disk controller will be random and unpredictable.

ReadFloppyDisk

static int ReadFloppyDisk(BYTE *buffer, WORD cylinder, WORD sector, WORD head)

ReadFloppyDisk is used to read a single physical sector into a buffer. Floppy disk sectors are 512 bytes for most standard floppies. So buffer should be allocated at least 512 bytes. You might want to find out the number of bytes per sector, that your floppy drive supports. The other parameters are cylinder, sector and head which are the physical parameters required to specify where you want to read the sector from. This function will return 0 for success and non-zero for failure, make sure you check the return value, always.

WriteFloppyDisk

static int WriteFloppyDisk(BYTE *buffer, WORD cylinder, WORD sector,WORD head)

WriteFloppyDisk is the analogous function to ReadFloppyDisk that does just the opposite. It writes the bytes contained in buffer onto the physical sector specified by cylinder, sector and head. This function will return 0 for success and non-zero for failure, make sure you check the return value, always.

Some points to remember

The floppy drive motor might take some time to catch up with our function calls. These functions will not wait for that to happen. So you must be careful that you do not do successful reads and writes onto the same sector till you are sure the data has been successfully read from or written into the sector in question. Often you will find that the functions return failure. This happens because most floppy drives are now thoroughly unused or over-used and are often in a very bad state. The quality of floppy diskettes also leaves a lot to be desired. The solution is to loop all calls thrice.

For example, if you are performing a read or a write, call the function and if it fails, call it again. Repeat this three times. I have found that three times is a pretty alright number to get a reasonable success rate. Also, it helps if you call the reset function after long operations. And please remember that the floppy drive is the slowest working part in your computer and keep that in mind. What that means is, don't try to rush it. If you are writing critical information into a sector, perhaps for copy protection, then it would be a good idea to use a Sleep in between.

Example usage

void CCFloppyDiskTestDlg::OnButton1() 
{
    unsigned char buff[512];	
    strcpy((char*)buff,"This is kinda cool");
    CFloppyDisk::ResetDisk();
    if(CFloppyDisk::WriteFloppyDisk(buff,3,1,0)==NISH_ERROR)
        MessageBox("write failed");
    if(CFloppyDisk::ReadFloppyDisk(buff,3,1,0)==NISH_ERROR)
        MessageBox("read failed");
    MessageBox((char*)buff);
}

How to loop calls to improve success rate.

int m_return_code;
int count=0;
while(m_return_code=CFloppyDisk::ReadFloppyDisk(buff,3,1,0))
{
    count++;
    if(count==3)
        break;
}
if(m_return_code)
{
    MessageBox("After three attempts, we still failed. Destroy the floppy");
}

Technical Note regarding ResetDisk

Under Windows NT/2K we cannot directly make Interrupt 13h calls. For the Win 9x/ME set of Operating Systems the class makes a call to Interrupt 13h Function 0h which resets the floppy disk controller. To achieve the same in the Windows NT/2K set of Operating Systems, I have taken a different approach.

Initially I took the mistaken attitude that Windows NT/2K will not have resetting problems, but unfortunately I was wrong. Then I was stuck with the problem of resetting the internal buffers and error flags that NT/2K maintains when a floppy disk is directly opened. That's when I found out that all I had to do was to open the floppy disk and then close it immediately. I tried this out with bad floppies. And my success percentage improved from a very low 20% to almost 95% [I still got the occasional error]. But that can be improved to 99.999% by using the triple-loop method I have mentioned above. I believe what happens is that when we close the file handle, NT/2K flushes its internal buffers. This might internally result in a resetting of the floppy drive. I am not certain about this but that inference seems highly probable.

Version History

  • Version 2.0 - This now supports Windows 95/98/ME/NT/2K/XP
  • Version 1.0 - This supported only Windows 95/98/ME

Acknowledgements

Todd C. Wilson - It was Todd who suggested that I write a combined version of the class that supports both sets of Operating Systems. I owe version 2.0 to Todd.

Michael Dunn & Tim Smith - As you might observe, if you look through the source code, the entire functionality of the class is implemented via static functions. And I badly wanted some kind of static construction for some of my static members via calls to static functions. Without Tim's and Mike's help, I'd still have been sitting here puzzled and swearing at Microsoft.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
Nish Nishant is a technology enthusiast from Columbus, Ohio. He has over 20 years of software industry experience in various roles including Chief Technology Officer, Senior Solution Architect, Lead Software Architect, Principal Software Engineer, and Engineering/Architecture Team Leader. Nish is a 14-time recipient of the Microsoft Visual C++ MVP Award.

Nish authored C++/CLI in Action for Manning Publications in 2005, and co-authored Extending MFC Applications with the .NET Framework for Addison Wesley in 2003. In addition, he has over 140 published technology articles on CodeProject.com and another 250+ blog articles on his WordPress blog. Nish is experienced in technology leadership, solution architecture, software architecture, cloud development (AWS and Azure), REST services, software engineering best practices, CI/CD, mentoring, and directing all stages of software development.

Nish's Technology Blog : voidnish.wordpress.com

Comments and Discussions

 
GeneralData copy protection from one CD to anather CD Pin
sushilabhanvar23-Jun-09 20:40
sushilabhanvar23-Jun-09 20:40 
QuestionHow to detect bad sector in drive.Please help. Pin
want2beboss19-Jul-07 15:44
want2beboss19-Jul-07 15:44 
QuestionOther Removable Dvices Pin
Mohammad Abedi20-Apr-07 12:14
Mohammad Abedi20-Apr-07 12:14 
GeneralRead/Write permission Pin
VC_RYK1-Apr-07 23:51
VC_RYK1-Apr-07 23:51 
Questionreading 1024 Byte / 5 sec / 800 KB Pin
dudi_33322-Dec-06 4:08
professionaldudi_33322-Dec-06 4:08 
QuestionFloppies and .net DLL Pin
RealJunk2-Dec-06 20:34
RealJunk2-Dec-06 20:34 
I have a friend that has a recorder hooked up to a panio and it only takes floppies and it writes on to the floppies in an unorderly fashion. I was wondering if there was an easy way to back up these floppies up because they have very important music for my friend. How ever I do not have much experience in VC++ and was wondering if there is a way I could do something like this in C# which I have a bit more experience with. If I could use this class and read everything to say a txt file or something. May be create a .net DLL which I could reference.

Let me know Thanks,
RealJunk

GeneralIt doesn't work Pin
fan wei fang28-Dec-05 7:18
fan wei fang28-Dec-05 7:18 
GeneralRe: It doesn't work Pin
Nish Nishant29-Dec-05 8:48
sitebuilderNish Nishant29-Dec-05 8:48 
GeneralRe: It doesn't work Pin
fan wei fang29-Dec-05 15:01
fan wei fang29-Dec-05 15:01 
QuestionCan you help me ???. help me (absread() , abswirte()) Pin
Minh Vuong Tran11-Dec-05 16:35
Minh Vuong Tran11-Dec-05 16:35 
AnswerRe: Can you help me ???. help me (absread() , abswirte()) Pin
hans_artmann21-Apr-06 13:07
hans_artmann21-Apr-06 13:07 
Generalfloppy or cd-rom Pin
students552 university13-Feb-05 21:58
students552 university13-Feb-05 21:58 
GeneralHelp me Pin
sos1184-Dec-04 19:44
sos1184-Dec-04 19:44 
QuestionHow to find a unused sector in disk? Pin
greenolive_bing14-Oct-04 15:08
greenolive_bing14-Oct-04 15:08 
GeneralAccess From VB.net Pin
SwaimRM13-Oct-03 6:49
SwaimRM13-Oct-03 6:49 
GeneralNice nice Pin
Abin16-Sep-03 14:11
Abin16-Sep-03 14:11 
Question800kB floppies 80 tracks, 10 sectors - any chance? Pin
hans_artmann16-Aug-03 5:05
hans_artmann16-Aug-03 5:05 
GeneralThank you, Nish!!! Pin
PJ Arends11-Aug-03 9:57
professionalPJ Arends11-Aug-03 9:57 
GeneralRe: Thank you, Nish!!! Pin
Nish Nishant11-Aug-03 15:30
sitebuilderNish Nishant11-Aug-03 15:30 
GeneralFloppy write protection Pin
Anonymous12-May-03 5:37
Anonymous12-May-03 5:37 
GeneralReading cd sectors Pin
Dhruv Jayal22-Apr-03 21:17
Dhruv Jayal22-Apr-03 21:17 
QuestionCan you tell me how I can format the floppy disk by programming? Pin
Wei Huang19-Feb-03 0:25
Wei Huang19-Feb-03 0:25 
GeneralThanks Nish Pin
Andrew Peace1-Sep-02 12:30
Andrew Peace1-Sep-02 12:30 
GeneralRe: Thanks Nish Pin
Nish Nishant1-Sep-02 15:04
sitebuilderNish Nishant1-Sep-02 15:04 
QuestionFormatting a Disk? Pin
Rene De La Garza26-Jul-02 17:14
Rene De La Garza26-Jul-02 17:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.