So my problem is basically is that I can't figure out a condition to give an error message if can't find the file given as argument.
if ARGV.empty?
puts "Give me a file!"
elseif [condition]
puts "Can't find the file"
else
file = File.open(ARGV[0])
What I exactly need is the condition for the elseif.
Try File.exist?, e.g.
2.3.0 :003 > File.exist? 'foo'
=> false
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With