D Daniel Nov 15, 2005 #1 file id on windows 2000 is there any way to get a numeric file id for a file which identifies its full path?
file id on windows 2000 is there any way to get a numeric file id for a file which identifies its full path?
P Pegasus \(MVP\) Nov 16, 2005 #2 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? Click to expand... 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.
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? Click to expand... 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.