Using FSD Manager (Windows Embedded CE 6.0)

1/6/2010

FSD Manager, which is contained in Fsdmgr.dll, manages all system interaction with installable FSDs. It creates file handles, registers volumes, installs necessary functions, and maps application calls to the installed functions. FSD Manager invokes these functions when an application accesses folders and files on mounted volumes, using the file system functions.

The names of the functions it exports start with the prefix FSD_ followed by the name of the associated installable file system and are casesensitive. Aside from the FSD_ prefix, you can name your FSD anything you want.

Applications accessing an installable file system use file system functions. For example, when an application creates a directory on a target device, it calls the CreateDirectory function. FSD Manager then calls the function supplied in the FSD for the device.

You can use the following functions to develop an FSD:

These functions isolate the FSD from both the OS and the device drivers. In addition to providing these functions, Fsdmgr.dll also provides entry points to create the handles to be passed back to an application's CreateFile and FindFirstFile requests. These services are prototyped in the Fsdmgr.h header file.

See Also

Concepts

Installable File System Drivers