helpless said:
Hello.
I'm a newbie in c programming.
I'd like to make a program for creating an image file from a floppy disk.
Is there anyone with agood point of start in doing this?
Thanks.
In some literary circles, an image file of a floppy disk
is the entire contents of the floppy stored as a file
on another device. This is a mechanism often used when
duplicating floppies.
Yes, this can be done using the C language and a lot of
platform specific functions. For example, you will need
to access the floppy as sectors of data and write that
data into a floppy. Writing out is easy and can be
done using standard C. However, accessing the sectors
of a floppy requires platform specific functionality
which is best discussed in a newsgroup about your
platform.
I don't suggest you do this as a newbie. You will need
to read up on your operating system's functions, determine
the type of floppy and how to access it. A lot of work
as a newbie function. I'd rather purchase a product
to duplicate floppies than write my own. I have better
things to do with my time.
--
Thomas Matthews
C++ newsgroup welcome message:
http://www.slack.net/~shiva/welcome.txt
C++ Faq:
http://www.parashift.com/c++-faq-lite
C Faq:
http://www.eskimo.com/~scs/c-faq/top.html
alt.comp.lang.learn.c-c++ faq:
http://www.raos.demon.uk/acllc-c++/faq.html
Other sites:
http://www.josuttis.com -- C++ STL Library book