I search a way to do this,any idea ?
Maybe to look at Linux lsof (http://en.wikipedia.org/wiki/Lsof) command and see how it's implemented.
lsof ?
I want to made that under windows
Handle (http://technet.microsoft.com/en-us/sysinternals/bb896655.aspx) by Russinovich.
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
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.
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
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 /?