Method: Zip::DOSTime#to_binary_dos_date

Defined in:
lib/zip/dos_time.rb

#to_binary_dos_dateObject



21
22
23
24
25
# File 'lib/zip/dos_time.rb', line 21

def to_binary_dos_date
  (day) +
    (month << 5) +
    ((year - 1980) << 9)
end