FileStream::Seek Method (Int64, SeekOrigin)
Sets the current position of this stream to the given value.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- offset
-
Type:
System::Int64
The point relative to origin from which to begin seeking.
- origin
-
Type:
System.IO::SeekOrigin
Specifies the beginning, the end, or the current position as a reference point for offset, using a value of type SeekOrigin.
| Exception | Condition |
|---|---|
| IOException | An I/O error occurred. |
| NotSupportedException | The stream does not support seeking, such as if the FileStream is constructed from a pipe or console output. |
| ArgumentException | Seeking is attempted before the beginning of the stream. |
| ObjectDisposedException | Methods were called after the stream was closed. |
This method overrides Stream::Seek.
Note |
|---|
Use the FileStream::CanSeek property to determine whether the current instance supports seeking. For additional information, see Stream::CanSeek. |
You can seek to any location beyond the length of the stream. When you seek beyond the length of the file, the file size grows. In Windows NT and later versions, data added to the end of the file is set to zero. In Windows 98 or earlier versions, data added to the end of the file is not set to zero, which means that previously deleted data is visible to the stream.
For a list of common file and directory operations, see Common I-O Tasks.
The following example shows how to write data to a file, byte by byte, and then verify that the data was written correctly.
using namespace System; using namespace System::IO; int main() { String^ fileName = "Test@##@.dat"; // Create random data to write to the file. array<Byte>^dataArray = gcnew array<Byte>(100000); (gcnew Random)->NextBytes( dataArray ); FileStream^ fileStream = gcnew FileStream( fileName,FileMode::Create ); try { // Write the data to the file, byte by byte. for ( int i = 0; i < dataArray->Length; i++ ) { fileStream->WriteByte( dataArray[ i ] ); } // Set the stream position to the beginning of the file. fileStream->Seek( 0, SeekOrigin::Begin ); // Read and verify the data. for ( int i = 0; i < fileStream->Length; i++ ) { if ( dataArray[ i ] != fileStream->ReadByte() ) { Console::WriteLine( "Error writing data." ); return -1; } } Console::WriteLine( "The data was written to {0} " "and verified.", fileStream->Name ); } finally { fileStream->Close(); } }
The following example reads text in the reverse direction, from the end of file to the beginning of the file, by using the various SeekOrigin values with the Seek method.
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
