RosettaCodeData/Task/Check-that-file-exists/I/check-that-file-exists.i
2023-07-01 13:44:08 -04:00

18 lines
274 B
OpenEdge ABL

concept exists(path) {
open(path)
errors {
if error.DoesNotExist()
print(path, " does not exist!")
end
return
}
print(path, " exists!")
}
software {
exists("input.txt")
exists("/input.txt")
exists("docs")
exists("/docs")
exists("docs/Abdu'l-Bahá.txt")
}