FileStream::SetLength Method
Sets the length of this stream to the given value.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System::Int64
The new length of the stream.
| Exception | Condition |
|---|---|
| IOException | An I/O error has occurred. |
| NotSupportedException | The stream does not support both writing and seeking. |
| ArgumentOutOfRangeException | Attempted to set the value parameter to less than 0. |
This method overrides SetLength.
If the given value is less than the current length of the stream, the stream is truncated. If the given value is larger than the current length of the stream, the stream is expanded. If the stream is expanded, the contents of the stream between the old and the new length are undefined.
A stream must support both writing and seeking for SetLength to work.
Note |
|---|
Use the CanWrite property to determine whether the current instance supports writing, and the CanSeek property to determine whether seeking is supported. For additional information, see CanWrite and CanSeek. |
For a list of common file and directory operations, see Common I/O Tasks.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note