Read every other value using FileSeek : FileStream « File Directory Stream « C# / CSharp Tutorial

Home
C# / CSharp Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statement
5.String
6.struct
7.Class
8.Operator Overload
9.delegate
10.Attribute
11.Data Structure
12.Assembly
13.Date Time
14.Development
15.File Directory Stream
16.Preprocessing Directives
17.Regular Expression
18.Generic
19.Reflection
20.Thread
21.I18N Internationalization
22.LINQ
23.GUI Windows Forms
24.Windows Presentation Foundation
25.Windows Communication Foundation
26.Workflow
27.2D
28.Design Patterns
29.Windows
30.XML
31.XML LINQ
32.ADO.Net
33.Network
34.Directory Services
35.Security
36.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
C# / CSharp Tutorial » File Directory Stream » FileStream 
15.19.4.Read every other value using FileSeek
using System; 
using System.IO;  
 
class MainClass 
  public static void Main() { 
    FileStream f; 
    char ch; 
 
    try 
      f = new FileStream("random.dat", FileMode.Create)
    
    catch(IOException exc) { 
      Console.WriteLine(exc.Message)
      return 
    
 
    // Write the alphabet.      
    for(int i=0; i < 26; i++) { 
      try 
        f.WriteByte((byte)('A'+i))
      }  
      catch(IOException exc) { 
        Console.WriteLine(exc.Message)
        return 
      
    
 
    try 
      Console.WriteLine("Here is every other value: ")
      for(int i=0; i < 26; i += 2) { 
        f.Seek(i, SeekOrigin.Begin)// seek to ith double 
        ch = (charf.ReadByte()
        Console.Write(ch + " ")
      

 
    }  
    catch(IOException exc) { 
      Console.WriteLine(exc.Message)
    
  
    Console.WriteLine()
    f.Close()
  
}
Here is every other value:
A C E G I K M O Q S U W Y
15.19.FileStream
15.19.1.The FileMode and FileAccess
15.19.2.Open a file with exception handling
15.19.3.Demonstrate random access file
15.19.4.Read every other value using FileSeek
15.19.5.Open an existing file
15.19.6.Read file stream on a per byte basis
15.19.7.Read file stream as an array of bytes
15.19.8.Write data to file through FileStream per byte
15.19.9.Write data to file through FileStream via an array
15.19.10.Reset internal position for a FileStream
15.19.11.Write/read bytes using FileStream
15.19.12.Use FileStream to read a file selected from OpenFileDialog
15.19.13.Use FileStream to read a file byte by byte
15.19.14.Use FileStream to write/read a file byte by byte
15.19.15.Is a stream seekable
15.19.16.Binary File Reading through FileStream
15.19.17.Text File Reading with FileStream
15.19.18.Write byte array with FileStream
15.19.19.using statement and FileStream
15.19.20.Move file pointer to beginning of file
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.