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 7796743
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T23:27:46+00:00 2026-06-01T23:27:46+00:00

i have two programs working on the same file i want the first program

  • 0

i have two programs working on the same file
i want the first program to check regularly on the file, and if any changes are made operate on the file and empty it.
the other program writes to the file.
the problem occurs when the second program tries to write on the file because it’s used from the first one
is there an (if there’s any implemented C# program would be even better) algorithm to handle this?

  • 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-06-01T23:27:48+00:00Added an answer on June 1, 2026 at 11:27 pm

    To check if file has changed you might first of all check its timestamp. In pseudo code, you might try something like this in the monitoring program:

    try {
      if(FileTimeStampHasChanged(FileName)) {
        //Attempt to do something with the file
      }
    }
    catch {
      // Handle or ignore the exception if you can't open the file (maybe the other application hasn't finished writing). You can always retry later.
    }
    

    However, I would strongly recommend a different approach altogether. Here are the options I’d suggest.

    1. If you can alter the writing program, let it write to a temporary file (e.g. output.$$$) and let it rename it as soon as it’s done writing. Renaming is instantaneous and doesn’t cause any locking. This is, in my experience, one of the best simple solutions for concurrent access.
    2. If you cannot alter the writing program, then modify the reading one. Using the logic I described in point 1, let it try to rename the file to read and work on the renamed copy. If the rename fails, then it means that the writer isn’t done, and an attempt can be done later.
    3. If you cannot alter any of the programs, then you can make your own “traffic warden” application to implement point 1. It requires more work, but it’s still doable. Here’s how:
      • Configure the Writer to write into a folder, e.g. “Output”.
      • Configure the Reader to read from another folder, e.g. “Input”.
      • Write your Traffic Warden so that it monitors Output folder and, when the file changes, it moves it to Input folder. Moving is instantaneous as well (it’s practically the same operation as renaming).
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In Windows, I currently have two programs working as follow. Program A calls Program
I have two programs: one CLI program, and one GUI. The GUI is a
I've got a table recording views of programs. Each program can have two different
I currently have two copies of the same program on two separate computers, on
I have two programs, Writer and Reader. I have a FIFO from Writer to
I have two (UNIX) programs A and B that read and write from stdin/stdout.
I have two begininer programs, both using the 'while' function, one works correctly, and
I'm going to have two independent programs (using SqlAlchemy / ORM / Declarative) that
I have two very similar programs each trying to run two threads OddThread and
I have the following two programs: long startTime = System.currentTimeMillis(); for (int i =

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.