Sha256: 28d89faee45ad992bee16fdf6f9e21d25cb62f7e5b89df9c208b73af3cdf2c57
Contents?: true
Size: 1.66 KB
Versions: 36
Compression:
Stored size: 1.66 KB
Contents
module RubySMB module Fscc module FileInformation # The FileIdBothDirectoryInformation Class as defined in # [2.4.17 FileIdBothDirectoryInformation](https://msdn.microsoft.com/en-us/library/cc232070.aspx) class FileIdBothDirectoryInformation < BinData::Record CLASS_LEVEL = FileInformation::FILE_ID_BOTH_DIRECTORY_INFORMATION endian :little uint32 :next_offset, label: 'Next Entry Offset' uint32 :file_index, label: 'File Index' file_time :create_time, label: 'Create Time' file_time :last_access, label: 'Last Accessed Time' file_time :last_write, label: 'Last Write Time' file_time :last_change, label: 'Last Modified Time' uint64 :end_of_file, label: 'End of File' uint64 :allocation_size, label: 'Allocated Size' file_attributes :file_attributes, label: 'File Attributes' uint32 :file_name_length, label: 'File Name Length', initial_value: -> { file_name.do_num_bytes } uint32 :ea_size, label: 'Extended Attributes Size' uint8 :short_name_length, label: 'Short Name Length' uint8 :reserved, label: 'Reserved Space' string16 :short_name, label: 'File Short Name', length: 24 uint16 :reserved2, label: 'Reserved Space' uint64 :file_id, label: 'File Id' string16 :file_name, label: 'File Name', read_length: -> { file_name_length } end end end end
Version data entries
36 entries across 36 versions & 1 rubygems