Jump to content

Delete a file: Difference between revisions

add BQN
(Applesoft BASIC)
(add BQN)
Line 390:
del \input.txt
rd /s /q \docs</lang>
 
=={{header|BQN}}==
File operations are under the system value <code>•file</code> in BQN.
 
<lang bqn>•file.Remove "input.txt"
•file.Remove "/input.txt"
•file.RemoveDir "docs"
•file.RemoveDir "/docs"</lang>
 
=={{header|C}}==
236

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.