Property | Type | Description | |
---|---|---|---|
canRead | bool | ||
canWrite | bool | ||
clusterSize | uint | ||
currentCluster | uint | ||
data | byte[] | ||
directorySector | uint | ||
directorySectorIndex | uint | ||
fs | |||
isDirty | bool | ||
length | long | ||
lengthOnDisk | long | ||
nthCluster | uint | ||
position | long | ||
startCluster | uint |
Method | Description | |
---|---|---|
FatFileStream ( |
Initializes a new instance of the FatFileStream class.
|
|
FatFileStream ( |
Initializes a new instance of the FatFileStream class.
|
|
Flush ( ) : void |
When overridden in a derived class, clears all buffers for this stream and causes any buffered data to be written to the underlying device.
|
|
Read ( byte buffer, int offset, int count ) : int |
When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
|
|
ReadByte ( ) : int |
Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.
|
|
Seek ( long offset, SeekOrigin origin ) : long |
When overridden in a derived class, sets the position within the current stream.
|
|
SetLength ( long value ) : void |
When overridden in a derived class, sets the length of the current stream.
|
|
Write ( byte buffer, int offset, int count ) : void |
When overridden in a derived class, writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
|
|
WriteByte ( byte value ) : void |
Writes a byte to the current position in the stream and advances the position within the stream by one byte.
|
Method | Description | |
---|---|---|
NextCluster ( ) : bool |
Gets the next cluster.
|
|
NextClusterExpand ( ) : bool |
Gets the next cluster
|
|
ReadCluster ( uint cluster ) : void |
Reads the cluster.
|
public FatFileStream ( |
||
fs | The fs. | |
location | The location. | |
return | System.IO |
public FatFileStream ( |
||
fs | The fs. | |
startCluster | uint | The start cluster. |
directorySector | uint | The directory sector. |
directorySectorIndex | uint | Index of the directory sector. |
return | System.IO |
public Read ( byte buffer, int offset, int count ) : int | ||
buffer | byte | An array of bytes. When this method returns, the buffer contains the specified byte array with the values between |
offset | int | The zero-based byte offset in |
count | int | The maximum number of bytes to be read from the current stream. |
return | int |
protected ReadCluster ( uint cluster ) : void | ||
cluster | uint | The cluster. |
return | void |
public Seek ( long offset, SeekOrigin origin ) : long | ||
offset | long | A byte offset relative to the |
origin | SeekOrigin | A value of type |
return | long |
public SetLength ( long value ) : void | ||
value | long | The desired length of the current stream in bytes. |
return | void |
public Write ( byte buffer, int offset, int count ) : void | ||
buffer | byte | An array of bytes. This method copies |
offset | int | The zero-based byte offset in |
count | int | The number of bytes to be written to the current stream. |
return | void |
public WriteByte ( byte value ) : void | ||
value | byte | The byte to write to the stream. |
return | void |