RosettaCodeData/Task/Check-that-file-exists/Groovy/check-that-file-exists.groovy
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

4 lines
148 B
Groovy

println new File('input.txt').exists()
println new File('/input.txt').exists()
println new File('docs').exists()
println new File('/docs').exists()