8 lines
253 B
Text
8 lines
253 B
Text
|
|
'------ delete input.txt ----------------
|
||
|
|
kill "input.txt" ' this is where we are
|
||
|
|
kill "/input.txt" ' this is the root
|
||
|
|
|
||
|
|
' ---- delete directory docs ----------
|
||
|
|
result = rmdir("Docs") ' directory where we are
|
||
|
|
result = rmdir("/Docs") ' root directory
|