The MASM Forum

General => The Workshop => Topic started by: TouEnMasm on October 29, 2014, 02:41:05 AM

Title: Which file is open by a program,an html page,a system ?
Post by: TouEnMasm on October 29, 2014, 02:41:05 AM

I search a way to do this,any idea ?
Title: Re: Which file is open by a program,an html page,a system ?
Post by: GoneFishing on October 29, 2014, 03:01:42 AM
Maybe to look at Linux lsof (http://en.wikipedia.org/wiki/Lsof) command and see how it's implemented.
Title: Re: Which file is open by a program,an html page,a system ?
Post by: TouEnMasm on October 29, 2014, 04:21:06 AM
  lsof ?
I want to made that under windows
Title: Re: Which file is open by a program,an html page,a system ?
Post by: jj2007 on October 29, 2014, 05:20:19 AM
Handle (http://technet.microsoft.com/en-us/sysinternals/bb896655.aspx) by Russinovich.
Title: Re: Which file is open by a program,an html page,a system ?
Post by: Gunther on October 29, 2014, 06:31:15 AM
Jochen,

Quote from: jj2007 on October 29, 2014, 05:20:19 AM
Handle (http://technet.microsoft.com/en-us/sysinternals/bb896655.aspx) by Russinovich.

seems to be an excellent tool. Thank you for the link.  :t

Gunther
Title: Re: Which file is open by a program,an html page,a system ?
Post by: adeyblue on October 29, 2014, 07:13:30 AM
If you want to put this is your own app, the documented ways are IFileIsInUse (http://msdn.microsoft.com/en-us/library/windows/desktop/bb775874(v=vs.85).aspx) and the Restart Manager (http://blogs.msdn.com/b/oldnewthing/archive/2012/02/17/10268840.aspx). Both are Vista+ and both are kind of involved.
Title: Re: Which file is open by a program,an html page,a system ?
Post by: TouEnMasm on October 29, 2014, 06:57:59 PM

Thanks to JJ and adeyblue.
Information seems to be complet like that.
to use the functions in code:
Quote
   include sdk32.inc
   include shobjidl.sdk
   include RestartManager.sdk
Title: Re: Which file is open by a program,an html page,a system ?
Post by: MtheK on October 29, 2014, 10:46:23 PM
  Externally, OPENFILES also usually works ELEVATED (Win7):

C:\windows\system32>openfiles /?
OPENFILES /parameter [arguments]
Description:
    Enables an administrator to list or disconnect files and folders
    that have been opened on a system.
Parameter List:
    /Disconnect      Disconnects one or more open files.

    /Query           Displays files opened locally or from shared
                     folders.

    /Local           Enables / Disables the display of local open files.

    /?               Displays this help message.
Examples:
    OPENFILES /Disconnect /?
    OPENFILES /Query /?
    OPENFILES /Local /?