0

Specifically, I need to determine whether a mounted SDIO card is using FAT or TFAT.

Win CE 5, CF 3.5

Nik
  • 2,718
  • 23
  • 34
  • Not familiar with those frameworks but if they support WMI, that is a possibility. Some examples http://msdn.microsoft.com/en-us/library/windows/desktop/aa394592(v=vs.85).aspx – user1231231412 Dec 12 '11 at 16:01
  • Thanks, but Win CE does not contain WMI. The equivalent call in the framework proper is DiskInfo. This doesn't exist in compact framework, but presumably there is a P/Invoke call that can be made that someone can enlighten me about. – Nik Dec 12 '11 at 16:31

1 Answers1

3

I've not specifically tested this, but my bet is it's going to be a succession of P/Invokes to OpenStore, OpenPartition and GetPartitionInfo

ctacke
  • 66,480
  • 18
  • 94
  • 155