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

  • Home
  • SEARCH
  • 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 8807683
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T02:25:42+00:00 2026-06-14T02:25:42+00:00

I have a program that can be ran several times. The program uses a

  • 0

I have a program that can be ran several times. The program uses a working directory where it saves/manipulates its runtime files and puts results. I want to make sure that if several copies of the program run simultaneously, they won’t use the same folder. To do this I add a hidden file in the work directory when it’s created, that means that the directory is being used, and delete it when the program exits. When a program wants to use a certain directory as its working directory, it’ll check if that file exists, and if not it will use the directory, otherwise, it’ll use a directory of the same name with its process id attached. The implementation is: (in Tcl)

upon starting:

if [file exists [db_work_area]/.folder_used] {
    reg set work_area_override [db_work_area]_[pid]
}
...
exec touch ${db_wa}/.folder_used

when exiting:

if [file exists [db_work_area]/.folder_used] {
    file delete [db_work_area]/.folder_used
}

This works when the copies of the program are opened one at a time, however I am afraid that if several copies of the program will be opened at the same time, there will be a problem with their synchronization. Meaning that two programs will check if the file exists, together, see that it doesn’t both chose that directory, and only after that, they will add the file. How can I implement a semaphore that will be able to synchronize between the several different copies of the same program running?

  • 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-14T02:25:43+00:00Added an answer on June 14, 2026 at 2:25 am

    You should not do a [file exists] and later the touch, it works better to use open to do it in a single step with the EXCL permission.

    Try to use something like this to create the file and fail if it already exists in an atomic way.

    if {[catch {open ${db_wa}/.folder_used {WRONLY EXCL CREAT}} fd]} {
        # error happend, file exists
        # pick a different area
    } else {
        # just close it again, like a touch to create the file
        close $fd
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a progaram that can be ran both as a winform, or from
I have my program that can draw rectangles. I have two problems I can't
I have a program that can send text to any other program for further
I have done one program that allow user can listen to the music via
I have a program which has a text box that the user can edit.
I have program, that must interact with a console program before my program can
I have an ASP.NET web service that I can access via a windows program
I'm almost finished with my program, but I have one problem that I can't
I have program that requires Python 3, but I develop Django and it uses
Well, I have this program that I run with the help of batch. Its

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.