public ContinuationSystemUseEntry(string name, byte length, byte version, byte[] data, int offset)
        {
            CheckAndSetCommonProperties(name, length, version, 28, 1);

            Block       = IsoUtilities.ToUInt32FromBoth(data, offset + 4);
            BlockOffset = IsoUtilities.ToUInt32FromBoth(data, offset + 12);
            Length      = IsoUtilities.ToUInt32FromBoth(data, offset + 20);
        }
Exemplo n.º 2
0
        public PosixFileInfoSystemUseEntry(string name, byte length, byte version, byte[] data, int offset)
        {
            CheckAndSetCommonProperties(name, length, version, 36, 1);

            FileMode = IsoUtilities.ToUInt32FromBoth(data, offset + 4);
            NumLinks = IsoUtilities.ToUInt32FromBoth(data, offset + 12);
            UserId   = IsoUtilities.ToUInt32FromBoth(data, offset + 20);
            GroupId  = IsoUtilities.ToUInt32FromBoth(data, offset + 28);
            Inode    = 0;
            if (length >= 44)
            {
                Inode = IsoUtilities.ToUInt32FromBoth(data, offset + 36);
            }
        }
        public PosixFileInfoSystemUseEntry(byte[] data, int offset)
        {
            byte len = data[offset + 2];

            Name    = "PX";
            Version = data[offset + 3];

            CheckLengthAndVersion(len, 36, 1);

            FileMode = IsoUtilities.ToUInt32FromBoth(data, offset + 4);
            NumLinks = IsoUtilities.ToUInt32FromBoth(data, offset + 12);
            UserId   = IsoUtilities.ToUInt32FromBoth(data, offset + 20);
            GroupId  = IsoUtilities.ToUInt32FromBoth(data, offset + 28);
            Inode    = 0;
            if (len >= 44)
            {
                Inode = IsoUtilities.ToUInt32FromBoth(data, offset + 36);
            }
        }
Exemplo n.º 4
0
        public ChildLinkSystemUseEntry(string name, byte length, byte version, byte[] data, int offset)
        {
            CheckAndSetCommonProperties(name, length, version, 12, 1);

            ChildDirLocation = IsoUtilities.ToUInt32FromBoth(data, offset + 4);
        }