RosettaCodeData/Task/Delete-a-file/Oz/delete-a-file.oz
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

6 lines
221 B
Text

for Dir in ["/" "./"] do
try {OS.unlink Dir#"output.txt"}
catch _ then {System.showInfo "File does not exist."} end
try {OS.rmDir Dir#"docs"}
catch _ then {System.showInfo "Directory does not exist."} end
end