RosettaCodeData/Task/Delete-a-file/Oz/delete-a-file.oz
2023-07-01 13:44:08 -04: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