RosettaCodeData/Task/Check-that-file-exists/I/check-that-file-exists.i
2016-12-05 23:44:36 +01:00

16 lines
247 B
OpenEdge ABL

function exists(""filename) {
var file = open(filename)
issues {
print(filename+" does not exist")
return
}
print(filename+" exists")
close(file)
}
software {
exists("input.txt")
exists("/input.txt")
exists("docs")
exists("/docs")
}