Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6656055
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T01:35:45+00:00 2026-05-26T01:35:45+00:00

I want to build my own flat file database. Here is how I access

  • 0

I want to build my own flat file database. Here is how I access the flat file database

Dim fs As New System.IO.FileStream("C:\MyDb.txt", IO.FileMode.Open, IO.FileAccess.Read, IO.FileShare.Read)
Dim sr As New System.IO.StreamReader(fs)

Is there a limit imposed by .Net for the usage of System.IO.FileShare.Read, System.IO.FileShare.Write and System.IO.FileShare.ReadWrite when dealing with a file?

I mean is that .Net capable to support thousands of users using file stream and stream reader objects with System.IO.FileShare.Read to access a single file concurrently?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T01:35:46+00:00Added an answer on May 26, 2026 at 1:35 am

    I don’t know the exact limit imposed by .NET/windows, so I have created a real test for you. I ran the following test code for few minutes and I found that up to 635908 counts of system.io.fileshare usage, it still functional, i.e. you can still read the flat database file’s content.

    Here is the code (it is a winform application, .Net 4):

    Public Class Form1
    
        Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
            Dim filepath As String = "c:\database.txt"
    
            Dim filestream As System.IO.FileStream
    
            Dim count As Int32
    
            For count = 0 To System.Int32.MaxValue
                filestream = New System.IO.FileStream(filepath, System.IO.FileMode.Open, System.IO.FileAccess.Read, System.IO.FileShare.Read)
                AppendLog(count, filestream.ReadByte)
            Next
        End Sub
    
        Private LogFilepath As String = "C:\LogInfo.txt"
        Private Enter As String = Chr(13) & Chr(10)
        Private Space As String = " "
    
        Private Sub AppendLog(ByVal Sequence As Int32, ByVal info As Byte)
            System.IO.File.AppendAllText(LogFilepath, Enter & Sequence & Space & CStr(info))
        End Sub
    
    End Class
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to build my own custom log4j (network) adapter to solve my problem
I want to build a few Nagios plugins of my own and wanted to
I want to build my own plugins in Jquery. So i want to know
I want to build my own carousel for learning purposes. But I'm curious how
I want to build my own menu from the beginning so to be able
I want to build my own web framework, and I want to build it
I want to build a GWT application that doesn't use a database. I thought
I want to build my own class similar to a String class that I
I want to build Data main class with subclasses DataClass1 (with own subclass Item
I'm looking to build my own very simple slider with jQuery and want it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.