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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:30:54+00:00 2026-05-23T17:30:54+00:00

I have an application which sits on a server in the network shared folder.

  • 0

I have an application which sits on a server in the network shared folder. Many users in network, can use that file simultaneously. I would like to perform an update of that EXE file and to do this, I would like to know who in network (besides me) is currently using that file.

Is it possible to check this programmatically? For example: to list all user names who are using that file now? Or atleast to retrieve number of locks on that file?

Thanks.

  • 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-23T17:30:55+00:00Added an answer on May 23, 2026 at 5:30 pm

    To list the open shared files in a machine you can use ADSI (Active Directory Service Interfaces).

    In order to use these interfaces from delphi you must import the Active DS type library

    enter image description here

    Then access the IADsFileServiceOperations interface, which contains a method called Resources this method return a collection with all the shared resources opened.

    Check this sample code

    {$APPTYPE CONSOLE}
    
    uses
      ActiveDs_TLB,
      Variants,
      ActiveX,
      SysUtils;
    
    
    function ADsGetObject(lpszPathName:WideString; const riid:TGUID; out ppObject):HRESULT; safecall; external 'activeds.dll';
    
    
    procedure ListSharedResourcesInUse;
    var
      FSO           : IADsFileServiceOperations;
      Resources     : IADsCollection;
      Resource      : OleVariant;
      pceltFetched  : Cardinal;
      oEnum         : IEnumvariant;
    begin
      //establish the connection to ADSI
      ADsGetObject('WinNT://./lanmanserver', IADsFileServiceOperations, FSO);
      //get the resources interface 
      Resources := FSO.Resources;
      //get the enumerator
      oEnum:= IUnknown(Resources._NewEnum) as IEnumVariant;
      while oEnum.Next(1, Resource, pceltFetched) = 0 do
      begin
        Writeln(Format('Resource %s User %s',[Resource.Path,Resource.User]));
        Resource:=Unassigned;
      end;
    end;
    
    
    begin
     try
        CoInitialize(nil);
        try
          ListSharedResourcesInUse;
        finally
          CoUninitialize;
        end;
     except
        on E:Exception do
            Writeln(E.Classname, ':', E.Message);
     end;
     Writeln('Press Enter to exit');
     Readln;
    end.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an application which extracts data from an XML file using XPath. If
We have an application which needs to use Direct3D. Specifically, it needs at least
We have a site which sits on two load balanced application servers (Win 2K3)
I have some applications (some native, some .NET) which use manifest files so that
I have a web application in VS2010 which has a number of DLLs that
I have an application which really should be installed, but does work fine when
I have an application which behaves as a slideshow for all pictures in a
I have an application which is a portal application and I want to allow
I have an application which takes a string value of the form %programfiles%\directory\tool.exe from
I have an application which get copied and run on client machines. The program

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.