How can I get the sector size for floppy and CD disks in Linux, via C++ code?

Thank you all.

link|improve this question

75% accept rate
feedback

1 Answer

"#include <hdreg.h>" and use ioctl HDIO_GET_IDENTITY to obtain a struct hd_driveid.
On this structure, the x->sector_bytes field is the sector size.

#include <stdlib.h>
#include <stdio.h>
#include <sys/ioctl.h>
#include <linux/hdreg.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include <cctype>
#include <unistd.h>

int main(){
    struct hd_driveid *id;
    char *dev = "/dev/hdb";
    int fd;

    fd = open(dev, O_RDONLY|O_NONBLOCK);
    if(fd < 0) {
        perror("cannot open");
    }
    if (ioctl(fd, HDIO_GET_IDENTITY, id) < 0) {
        close(fd);
        perror("ioctl error");
    } else {
        close(fd);
        printf("Sector size: %du\n", id->sector_bytes);
    }
}
link|improve this answer
Thank you very much. One question, why does the open need the O_NONBLOCK flag? – IUnknownPointer Jun 28 '10 at 8:20
See here: opengroup.org/onlinepubs/007908799/xsh/open.html – clyfe Jun 28 '10 at 10:36
Hey, @clyfe, it doesn't work... ioctl returns always an error. – IUnknownPointer Jul 19 '10 at 9:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.