home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
PROGRAMM
/
BUILDER.ZIP
/
FS.BLD
< prev
next >
Wrap
Text File
|
1992-11-17
|
580b
|
29 lines
' FS.BLD
'
' FS gives you the total size of any file or group of files
' listed on the command line.
'
' To use it, enter this at the DOS command line:
'
' fs <filespec>
'
' Where <filespec> is a filename or wildcard specification.
' If you omit a file specification, it uses *.*
'
' Examples:
'
' fs *.exe
' fs acct1.wks
' Set aside memory for the count of file sizes.
longint FSize
' If user didn't specify any files, use *.*
if ParamCount < 2
FSize := FileSize "*.*"
end else
FSize := FileSize "%1"
end
say FSize; " total bytes."