DELETE
Syntax DELETE filename.ext
 
Explanation DELETE removes the file specified by its input from the disk.

The instruction

DELETE "????.LGO

erases all files with four-character names with the file extension .LGO.

The instruction

DELETE "*.LGO

erases all files with names of any length with the file extension .LGO.
 

Example DELETE "KNIFE.LGO 
MEMBER? "KNIFE.LGO DIR 
Result: FALSE 

TopIndex