The following subsections describe some of the differences between file system filter drivers and device drivers. Because file system filter drivers are not device drivers and thus do not control hardware devices directly, they do not receive IRP_MJ_POWER requests. Instead, power IRPs are sent directly to the storage device stack. In rare circumstances, however, file system filter drivers might interfere with power management. For this reason, file system filter drivers should not register dispatch routines for IRP_MJ_POWER in theDriverEntry routine, and they should not call PoXxx routines. File system filter drivers cannot be Windows Driver Model (WDM) drivers. The Microsoft Windows Driver Model is only for device drivers. For more information about file system driver development in Windows Me, Windows 98, and Windows 95, see the Windows Me Driver Development Kit (DDK). Because file system filter drivers are not device drivers and thus do not control hardware devices directly, they should not have AddDevice or StartIo Although file system filter drivers and device drivers both create device objects, they differ in the number and kinds of device objects that they create. Device drivers create physical and functional device objects to represent devices. The Plug and Play (PnP) Manager builds and maintains a global device tree that contains all device objects that are created by device drivers. The device objects that file system filter drivers create are not contained in this device tree. File system filter drivers do not create physical or functional device objects. Instead, they create control device objects and filter device objects. The control device object represents the filter driver to the system and to user-mode applications. The filter device object performs the actual work of filtering a specific file system or volume. A file system filter driver normally creates one control device object and one or more filter device objects. Because file system filter drivers are not device drivers, they do not perform direct memory access (DMA). Unlike device filter drivers, which can attach above or below a target device's function driver, file system filter drivers can attach only above a target file system driver. Thus, in device-driver terms, a file system filter driver can be only an upper filter, never a lower filter. ref: http://msdn.microsoft.com/en-us/library/ff548075(v=vs.85).aspx Sample Filter Driver code - No Power Management
No WDM
No AddDevice or StartIo
Different Device Objects Created
Other Differences