Exemplo n.º 1
0
        public FATStream(FAT fs, FileAllocationTable fat, UInt32 startcluster)
        {
            this.fs           = fs;
            this.fat          = fat;
            this.startcluster = startcluster;

            ClusterSize = fat.ClusterSize;

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

            ClusterSize = fat.ClusterSize;

            Restart(0);
        }
Exemplo n.º 3
0
 public DirectoryTable(FAT fat, uint cluster)
 {
     this.fat = fat;
     this.cluster = cluster;
 }
Exemplo n.º 4
0
 public DirectoryTable(FAT fat, uint cluster)
 {
     this.fat     = fat;
     this.cluster = cluster;
 }