HTBasic Help
×
Menu
Index

CREATE DIR Example

10    CLEAR SCREEN
20    CONFIGURE LONGFILENAMES ON
30    CREATE DIR "New directory"    !Create the directory.
40    PRINT "I created a directory called"
50    CAT "New*";NAMES    !Make sure the directory was created.
60    PAUSE
70    PURGE "New directory"
80    PRINT "I removed it, now."
90    END