1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/*
** DRIVSRCH.C - public domain by Marty Connelly, Victoria, BC 1992
**
** Modified by Bob Stout
**
** Routine checks how many valid disk drives are available on machine,
** both physical and logical drives
*/
/*
** Includes drive letters assigned with DOS SUBST command
**
** Networked drives are left as an exercise as I don't have access
** to them to check.
**
** The routine uses undocumented DOS interrupt 32H.
**
** Compatible with MSC 5 and 6, ZTC++, BC++, other DOS compilers
**
** DS:BX contains the address of the Disk Parameter Block (DPB) for a
** requested drive. If the drive letter at offset 0 of the DPB doesn't
** match the requested drive, then the drive has been SUBST'ed.
*/
#include <stdio.h>
#include <dos.h>
#if !defined(MK_FP)
#define MK_FP(seg,off) ((void far *)(((long)(seg) << 16)|(unsigned)(off)))
#endif
#ifdef __TURBOC__
#define _far far
#endif
void main(void)
{
int i;
int unsigned result;
int drivestatus[26];
unsigned char _far *DPB;
union REGS regs;
struct SREGS sregs;
/* routine checks for all valid drive possibilities from A to Z */
/*
** if removeable media drive ie. floppy drive A: has a latch door
** open you will get "Abort Retry" panic message
*/
for (i = 0; i < 26; i++)
{
/* drive number (0=default, 1=A, 2=B,etc.)*/
regs.h.dl = (unsigned char)(i + 1);
segread(&sregs);
regs.h.ah=0x32; /* DOS interrupt 32H */
/* was undocumented for DOS release 3.2 */
intdosx(®s,®s, &sregs);
result=regs.h.al;
DPB = MK_FP(sregs.ds, regs.x.bx);
/*
** result =0 then valid drive
** =255 or ff hex then invalid or non-existent drive
*/
if (0 == result && *DPB != (unsigned char)i)
drivestatus[i] = 1;
else drivestatus[i]=result;
}
for (i = 0; i < 26; i = i + 2)
{
printf("drive %c: status code =%3d drive %c: status code =%3d\n",
'A' + i,drivestatus[i],'B' + i,drivestatus[i+1]);
}
return;
}
|