Esempio n. 1
0
        public File(INtfsContext context, FileRecord baseRecord)
        {
            _context = context;
            _mft = _context.Mft;
            _records = new List<FileRecord>();
            _records.Add(baseRecord);
            _indexCache = new ObjectCache<string, Index>();
            _attributes = new List<NtfsAttribute>();

            LoadAttributes();
        }
Esempio n. 2
0
        public File(INtfsContext context, FileRecord baseRecord)
        {
            _context = context;
            _mft     = _context.Mft;
            _records = new List <FileRecord>();
            _records.Add(baseRecord);
            _indexCache = new ObjectCache <string, Index>();
            _attributes = new List <NtfsAttribute>();

            LoadAttributes();
        }