diff options
author | Paul Duncan <pabs@pablotron.org> | 2016-08-10 23:45:57 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2016-08-10 23:45:57 -0400 |
commit | ac17e24feca48ee347fc1dbd376beaee7907a75c (patch) | |
tree | 3a110a545d8e1ef06d5233d14c96b12b705121b6 /src | |
parent | 82dafe047ec701ecd8d62c8088152fe2c4ab1a5d (diff) | |
download | zip-crystal-ac17e24feca48ee347fc1dbd376beaee7907a75c.tar.bz2 zip-crystal-ac17e24feca48ee347fc1dbd376beaee7907a75c.zip |
add dir?
Diffstat (limited to 'src')
-rw-r--r-- | src/zip.cr | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -11,7 +11,7 @@ require "zlib" # [x] convert datetime to Time # [x] add size to Entry # [x] Version -# [ ] directories +# [x] directories # [ ] full tests # [ ] zip64 # [ ] legacy unicode (e.g., non-bit 11) path/comment support @@ -1520,6 +1520,20 @@ module Zip end # + # Returns true if this entry a directory. + # + # Example: + # + # Zip.read("foo.zip") do |zip| + # type = zip["some-dir/"].dir? ? "directory" : "file" + # puts "#{path} is a #{type}" + # end + # + def dir? : Bool + (@external_attr & 0x01) != 0 + end + + # # Return the uncompressed size of this entry in bytes. # # Example: |