home *** CD-ROM | disk | FTP | other *** search
- '
- ' Demo using PowerBasic 2.10 Directory command along with using the DTA
- ' area to get extended file information.
- '
-
- $LINK "TTDIR100.PBU"
-
- DIM UDir$(255)
-
- Path$ = COMMAND$
- IF Path$ = "" THEN
- Path$ = "*.*"
- END IF
-
- N% = 0
- CALL GetDir100(Path$, UDir$(), N%)
-
- FOR J% = 0 TO N%
- PRINT UDir$(J%)
- NEXT J%
-