Jump to content

Delete a file: Difference between revisions

added php
m (whitespace and lang tags)
(added php)
Line 248:
perl -e 'unlink "/input.txt"'
perl -e 'rmdir "/docs"'
 
=={{header|PHP}}==
<lang php><?php
unlink('input.txt');
unlink('/input.txt');
rmdir('docs');
rmdir('/docs');
?></lang>
 
=={{header|PowerShell}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.