views:

34

answers:

1

Using Delphi 07 is it possible to (How do I) get the handle of a directory if I know its path?

+2  A: 

The Win32 API CreateFile() function can open a handle to a directory on NT-based versions of Windows (ie, any version other than Win3.x, Win9x, and WinME).

Remy Lebeau - TeamB