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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T04:35:20+00:00 2026-05-23T04:35:20+00:00

I need to create a file that is locked against reads, at the point

  • 0

I need to create a file that is locked against reads, at the point of creation, so that other processes that may go looking for this file do not start reading it, before it has been completely written.

I know that I can create and then lock it, but I’m concerned that this leaves me open to a race condition.

Or am I worrying about nothing here? If I have a file open for writing and then open it for reading with another process, will the reading process never see an EOF until the writing process closes the file?

  • 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-23T04:35:20+00:00Added an answer on May 23, 2026 at 4:35 am

    There’s is a race condition with > and >>, but it can be circumvented using +<.

    # >
    open(my $fh, '+<', $qfn) or die $!;
    flock($fh, LOCK_EX) or die $!;
    truncate($fh, 0) or die $!;
    ...
    
    # >>
    open(my $fh, '+<', $qfn) or die $!;
    flock($fh, LOCK_EX) or die $!;
    seek($fh, 0, SEEK_END) or die $!;
    ...
    

    There is also a race condition in the scenario you describe.

    Writer                       Reader
    =========================    =========================
    - opens file
                                 - opens file
                                 - locks file
                                 - obtains lock on file
    - locks file [blocks]        - reads the file [empty]
                                 - closes and unlocks file
    - obtains lock on file
    - writes to file
    - writes to file
    - closes and unlocks file
    

    A common strategy to avoid this problem is to have the writer

    1. create the file in a temporary directory, and then
    2. rename the file into the directory the reader monitors when the file is complete.

    rename is an atomic action, so the file will appear fully formed in the directory the reader monitors. This requires the cooperation of the writer, but the best solutions will.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to create a batch file that reads a file with one line
I need to create a batch file that changes path to a particular folder
I need to create a batch file that will take the latest of my
We need to create a file management interface that integrates with the clients current
I need to create a single trace file that spans several days for one
I need to create a hadoop job jar file that uses mahout and a
I understand that we need to create MXML file to define a view. Suppose
I need to create a log file containing HTML (tables, etc). It seems that
we have some C++ code that we need to create a make file in.
I need to create an ANSI text file from an Access recordset that outputs

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.