What is a good resource to get started with Windows file system driver development?

drivers, filesystems, windows

Solution

Windows NT File System Internals by Rajeev Nagar.

OSR Online's File System Resource page (and OSR Online in general):

- http://www.osronline.com/section.cfm?section=20

The NTFSD mailing list/forum (also hosted by OSR):

- http://www.osronline.com/page.cfm?name=ListServer

And starting with Vista, the Windows Driver Kit (WDK), which used to be called the DDK, now includes the Installable File Systems (IFS) Kit:

- http://www.microsoft.com/whdc/devtools/wdk/default.mspx

Just a heads up - Windows file system development is extremely complex because the file system is tightly integrated with the Windows memory manager. It's the kind of thing that people dedicate careers to. Just so you have an idea what you may be getting into.

Problem

What is a good resource to get started with Windows file system driver development for a newbie?

Original source