http://qs321.pair.com?node_id=944223


in reply to is this file open?

How can I test whether the spreadsheet is already "being used by another program",br>
That's actually quite difficult on Windows (although a breeze on Linux).

Using the Win32 API, given the right privileges, it is possible to get a copy of an open file handle in another process using DuplicateHandle(). However, the only documented API which is available is GetMappedFileName() - which means we must first map the file to our process address space. That does not work with a file of zero length! So if a process has, for example, just opened a file for write access then it might be zero length, and buffering will extend the period when it appears to be empty. With all this going on, there is the possibility of a race condition.
The SysInternals toolset includes handle.exe to give this information, albeit in an external process, and its output is sent to STDOUT (so run it in a pipe).
handle.exe uses the Windows Object Manager, which uses undocumented APIs. It iterates through kernel's object namespace.
On Windows 7, make sure you "Run as administrator".