delorie.com/djgpp/doc/libc/libc_388.html | search |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
#include <dos.h> void getdfree(unsigned char drive, struct dfree *ptr); |
This function gets information about the size and fullness of the given drive (0=default, 1=A:, etc). The return structure is as follows:
struct dfree { unsigned df_avail; /* number of available clusters */ unsigned df_total; /* total number of clusters */ unsigned df_bsec; /* bytes per sector */ unsigned df_sclus; /* sectors per cluster */ }; |
None.
ANSI/ISO C | No |
POSIX | No |
struct dfree d; getdfree(3, &d); /* drive C: */ |
webmaster | delorie software privacy |
Copyright © 2004 | Updated Apr 2004 |