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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T03:03:37+00:00 2026-05-14T03:03:37+00:00

When I open a file, I want to know if it is being used

  • 0

When I open a file, I want to know if it is being used by another process so I can perform special handling; any other IOException I will bubble up. An IOException’s Message property contains “The process cannot access the file ‘foo’ because it is being used by another process.”, but this is unsuitable for programmatic detection. What is the safest, most robust way to detect a file being used by another process?

  • 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-14T03:03:37+00:00Added an answer on May 14, 2026 at 3:03 am

    This particular version of IOException is thrown when the error code returned from the Win32 native function is ERROR_SHARING_VIOLATION (Documentation). It has the numeric value of 0x20 but is actually stored as 0x80070020 on the HRESULT property of the exception (it’s the result of calling MakeHRFromErrorCode).

    So the programatic way of checking for a sharing violation is checking the HResult property on the IOException for the value 0x80070020.

    public static bool IsSharingViolation(this IOException ex) {
      return 0x80070020 == Marshal.GetHRForException(ex);
    }
    

    However I do question what exactly you want to do in the scenario that it was thrown as the result of a sharing violation. The moment the exception is thrown the other process could exit and hence remove the violation.

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

Sidebar

Related Questions

I want to know if there are any methods other than file.open(); in <windows.h>
I want to know how to open and manipulate a simple image file in
On Gnome/KDE you can select in which application you want to open file (Right
I want to open a file dialog box in user control. I used using
I want to open a file from a Class in C# using a Process,
I want to open file and read it that I pass from console. Like
In php I have open a .php file and want to evaluate certain lines.
I want to open a file for reading, the C++ way. I need to
Suppose I want to open a file in an existing Emacs session using su
I really want to know, how to secure a firebird database from being opened

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.