Displaying 1 result from an estimated 1 matches for "parse_binary_dos_format".
2010 Oct 27
0
RubyZip Exceptions
Hi,
I am wondering if there is a way of catching exceptions that are
thrown within rubyzip.rb.
For example:
in rubyzip line 583,
private
def set_time(binaryDosDate, binaryDosTime)
@time = Time.parse_binary_dos_format(binaryDosDate,
binaryDosTime)
rescue ArgumentError
puts "Invalid date/time in zip entry"
end
I need to be able to ''catch'' the exception thrown here, as my app
needs to reject zip files that have invalid date/timestamps
is there a way of doing this before/...