Apologies for off topic question.
Felt more likely to find help here.
I am listing out all the volumes on a disk with
FindFirstVolume();
while( success )
FindNextVolume();
FindVolumeClose();
This is working fine and I am getting all the three
volumes if my disk layout is
NTFS(PartitionStyle = 0x7)
NTFS(PartitionStyle = 0x7)
RAW(PartitionStyle = 0x27)
but if changed to
NTFS(PartitionStyle = 0x7)
NTFS(PartitionStyle = 0x7)
RAW(PartitionStyle = 0x28)
I am getting only 2 NTFS volumes. The other partition
is missing.
Any ideas why?
Thank you.
V.
Be smarter than spam. See how smart SpamGuard is at giving junk email the boot with the All-new Yahoo! Mail at http://mrd.mail.yahoo.com/try_beta?.intl=ca
Volume APIs (which are wrappers around IOCTLs to MountMgr.sys) and the
underlying MountMgr just plain ignore partitions whose MBR type byte is non
FAT and non-NTFS.
–
Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
xxxxx@storagecraft.com
http://www.storagecraft.com
“v n” wrote in message news:xxxxx@ntdev…
> Apologies for off topic question.
> Felt more likely to find help here.
>
> I am listing out all the volumes on a disk with
>
> FindFirstVolume();
> while( success )
> FindNextVolume();
> FindVolumeClose();
>
> This is working fine and I am getting all the three
> volumes if my disk layout is
>
> NTFS(PartitionStyle = 0x7)
> NTFS(PartitionStyle = 0x7)
> RAW(PartitionStyle = 0x27)
>
> but if changed to
>
> NTFS(PartitionStyle = 0x7)
> NTFS(PartitionStyle = 0x7)
> RAW(PartitionStyle = 0x28)
>
> I am getting only 2 NTFS volumes. The other partition
> is missing.
>
> Any ideas why?
>
> Thank you.
> V.
>
>
>
> Be smarter than spam. See how smart SpamGuard is at giving junk email
the boot with the All-new Yahoo! Mail at
http://mrd.mail.yahoo.com/try_beta?.intl=ca
>
>