home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windoware
/
WINDOWARE_1_6.iso
/
winutil
/
pbtool2i
/
new.doc
< prev
next >
Wrap
Text File
|
1991-06-02
|
1KB
|
28 lines
I will not place all new command in this file instead of inserting them into
the regular documentation. When all the routines are finished (if ever)
I will then fix the documentation.
-------------------------------------------------------------------------------
GetDir2 - SUB-ROUTINE - DOSIO.PBU
-------------------------------------------------------------------------------
Works just like GetDir$ by placing the directory of a given path in a
specified array. The difference is that the file size and date are
placed into the string. Note: The array is sorted in filename order.
Example: CALL GetDir2$(Path$, Atr%, FilArr$())
See GetDir$ for a better explanation.
-------------------------------------------------------------------------------
SizeDir - FUNCTION - DOSIO.PBU
-------------------------------------------------------------------------------
Returns the number of bytes of all files in a path.
Example: PRINT "Current directory uses";SizeDir&(Path$,Atr%);"bytes."
-------------------------------------------------------------------------------
SortDirExt - SUB-ROUTINE - DOSIO.PBU
-------------------------------------------------------------------------------
Sorts an array from GetDir or GetDir2 by extension then subsorts by name.
Example: CALL SortDirExt(FilArr$())
-------------------------------------------------------------------------------