home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
PROGRAMM
/
BUILDER.ZIP
/
FREE.BLD
< prev
next >
Wrap
Text File
|
1992-11-17
|
903b
|
33 lines
' FREE.BLD
' Displays drive statistics: space available, total space, and space used.
longint d,dsize
string CurDisk
integer status
say "FREE by Tom Campbell: A HYPE utility"
say "A free utility from hyperkinetix, inc."
say
if ParamCount is 1
CurDisk := CurrentDrive
d := DiskFree CurDisk
dsize := DiskSize CurDisk
say "Available disk space on drive "; CurDisk; " "; d; " bytes."
say "Total capacity of drive "; CurDisk; " "; dsize; " bytes."
say "Disk space in use on drive "; CurDisk; " "; dsize-d; " bytes."
exit
end
' Use %1
status := DiskReady "%1"
if status
d := DiskFree "%1"
dsize := DiskSize "%1"
say "Available disk space on drive %1: "; d; " bytes."
say "Total capacity of drive %1: "; dsize; " bytes."
say "Disk space in use on drive %1: "; dsize-d; " bytes."
exit
end
say "Disk %1 isn't ready, dude."