Handbook
Glossary
?delete-tree ( path -- )
Vocabulary
io.directories
Inputs
path
an
object
Outputs
None
Definition
USING:
io.files
kernel
;
IN:
io.directories
:
?delete-tree
( path -- )
dup
file-exists?
[
delete-tree
]
[
drop
]
if
;