Ejemplo n.º 1
0
        public long GetFreeSpaceSize(string path)
        {
            int freeBlockCount = AllocationTable.GetFreeListLength();

            return(Header.BlockSize * freeBlockCount);
        }