Sha256: 078a2d4b37efe5f8252a99cd8de5125cacdd7e0ab6d428b9d409a54d3f2a61d9
Contents?: true
Size: 1.46 KB
Versions: 28
Compression:
Stored size: 1.46 KB
Contents
module RubySMB module Fscc module FileInformation # The FileIdDirectoryInformation Class as defined in # [2.4.18 FileIdFullDirectoryInformation](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/ab8e7558-899c-4be1-a7c5-3a9ae8ab76a0) class FileIdFullDirectoryInformation < BinData::Record CLASS_LEVEL = FileInformation::FILE_ID_FULL_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' int64 :end_of_file, label: 'End of File' int64 :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' uint32 :reserved, 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
28 entries across 28 versions & 1 rubygems