The sfloppy sample is a super floppy driver that resides in the directory \\Ntddk\Src\Storage\sfloppy. It is a class driver for Super Floppy disk drives. It sits a level above the port driver (ATAPI, USB, etc) in the driver stack, and brokers communication between the application level and the port driver. The floppy driver takes requests from fileSystem drivers and then sends the appropriate SCSI_REQUEST_BLOCK (SRB) to the port driver. It is compatible with x86 and IA64 platforms.
Support library to access and manipulate FAT12 / FAT16 / FAT32 file systems - Includes a FUSE fileSystem module to access FAT volumes which uses the library
The Funambol J2ME Mail Client aims to be a light, easy to use, free email
client for J2ME devices.
The first release comes with a simple but effective UI, and a storage limited
to the internal RMS only. This makes the application compatible with most of
the phones around (minimum requirements are: MIDP2.0, CLDC 1.0, 512k of
Storage).
The mail synchronization using SyncML 1.2 over HTTP, thus removing
any problem related to the access to IMAP or POP ports.
The mail client synchonizes its address book with the one on the server,
Its design is modular and can be extended in future with other mail
protocols, a more sophisticated UI and access to the phone s AddressBook or
fileSystem for the devices allowing this.
See the javadoc for more information on the structure of the library.
Application (fix point) for playing MP3 data on embedded systems. mp3play is
designed to be able to play mp3 data files within the local fileSystem
(which can be a network fileSystem), or fetch files to play via http
over a network. For the http case the address can specify a streaming
MP3 server.
MTOOLS
version 2.0
Mtools is a public domain collection of programs to allow Unix systems
to read, write, and manipulate files on an MSDOS fileSystem (typically a
diskette).
The following MSDOS commands are emulated:
Mtool MSDOS
name equivalent Description
----- ---- -----------
mattrib ATTRIB change MSDOS file attribute flags
mcd CD change MSDOS directory
mcopy COPY copy MSDOS files to/from Unix
mdel DEL/ERASE delete an MSDOS file
mdir DIR display an MSDOS directory
mformat FORMAT add MSDOS fileSystem to a low-level format
mlabel LABEL make an MSDOS volume label.
mmd MD/MKDIR make an MSDOS subdirectory
mrd RD/RMDIR remove an MSDOS subdirectory
mread COPY low level read (copy) an MSDOS file to Unix
mren REN/RENAME rename an existing MSDOS file
mtype TYPE display contents of an MSDOS file
mwrite COPY low level write (copy) a Unix file to MSDOS
I want to provide an example file system driver for Windows NT/2000/XP. For some time I have worked on an implementation of RomFs. RomFs is a small fileSystem originally implemented in Linux, because of its simple disk layout its a good choice for an example driver. The current status is a working read-only driver that supports caching of file data, the create functionallity still needs some work but I m releasing it due to the high public demand.