Hacker News new | ask | show | jobs
by masklinn 52 days ago
> AFAIK you can't open directories on Windows.

You can but you have to go through the lower level API: NtCreateFile can open a directory, and you can pass in a RootDirectory handle to following calls to make them handle-relative.

1 comments

You can open directories using high level win32 APIs. What you need NtCreateFile for is opening files relative to an open directory.