file id on windows 2000

  • Thread starter Thread starter Daniel
  • Start date Start date
D

Daniel

file id on windows 2000

is there any way to get a numeric file id for a file which identifies its
full path?
 
Daniel said:
file id on windows 2000

is there any way to get a numeric file id for a file which identifies its
full path?

The following batch file will display all file handles currently in use by
Outlook.exe:

@echo off
for /F %%a in ('tlist ^| find /i "Outlook.exe"') do oh -p %%a | find /i "
file "

tlist.exe and oh.exe come with the Windows Resource Kit.

File handles numbers are assigned at the time of opening a file.
They will vary from one session to the next.
 
Back
Top