Delete a file: Difference between revisions

Content added Content deleted
m (OCaml: rmdir has been added to Sys)
(Add Plain English)
Line 1,363: Line 1,363:
rm("/docs");
rm("/docs");
}</syntaxhighlight>
}</syntaxhighlight>

=={{header|Plain English}}==
<syntaxhighlight lang="text">
To run:
Start up.
\ In the current working directory
Destroy ".\input.txt" in the file system.
Destroy ".\docs\" in the file system.
\ In the filesystem root
Destroy "C:\input.txt" in the file system.
Destroy "C:\docs\" in the file system.
Shut down.
</syntaxhighlight>


=={{header|PowerShell}}==
=={{header|PowerShell}}==