the file system of a floppy disk drive in WindowsXP

Hi all,

The file system of a floppy disk drive in WindowsNT and Windows2000 is FAT
but what is in WindowsXP?

in Windows NT and Windows 2000

DriverEntry(…)
{
.
.
RtlInitUnicodeString(&String, L\Fat);
^^^^^^What is in Windows XP?
if( NT_SUCCESS(IoGetDeviceObjectPointer(
&String, FILE_READ_ATTRIBUTES, &fileObject, &deviceObject) ) {
MyFsNotification(deviceObject, TRUE);
ObDereferenceObject( fileObject );
}
.
.
}

Any help will be appreciated.

Thanks in advance,

Aomi.

> The file system of a floppy disk drive in WindowsNT and Windows2000
is FAT

but what is in WindowsXP?

FAT is the only supported file system on PC floppies.

Max

Explanations that are not finished were not enough.
When designating FAT, it calls IoGetDeviceObjectPointer, it succeeds as NT
in 2,000 but it fails in XP. (STATUS_OBJECT_NAME_NOT_FOUND returned.)
Probably, the mount information of floppy is to do and to get in what
manner in XP.

Thanks in advance,

Aomi

DriverEntry(…)
{
.
.
RtlInitUnicodeString(&String, L\Fat);
^^^^^^What is in Windows XP?
if( NT_SUCCESS(IoGetDeviceObjectPointer(
&String, FILE_READ_ATTRIBUTES, &fileObject, &deviceObject) )
{
MyFsNotification(deviceObject, TRUE);
ObDereferenceObject( fileObject );
}
.
.
}