Example #1
0
        public FATStream(FAT fs, FileAllocationTable fat, UInt32 startcluster)
        {
            this.fs           = fs;
            this.fat          = fat;
            this.startcluster = startcluster;

            ClusterSize = fat.ClusterSize;

            Restart(0);
        }
Example #2
0
        public FATStream(FAT fs, FileAllocationTable fat, UInt32 startcluster)
        {
            this.fs = fs;
            this.fat = fat;
            this.startcluster = startcluster;

            ClusterSize = fat.ClusterSize;

            Restart(0);
        }