This is where the WMI Explorer that I told you about in my answer in your previous question helps. The following is the query in my previous answer:
SELECT * FROM Win32_DiskDrive Where InterfaceType='USB'
When I put that query into WMI Explorer I see that Model
is SD Card
. That is what you are looking for, correct?
When I put:
SELECT * FROM Win32_DiskDrive Where InterfaceType='USB'
and format using:
sb.Append($"{drive["caption"]} | {drive["MediaType"]} | {drive["Model"]}\r\n");
into the sample code in my answer in your previous question I get:
Seagate Portable USB Device | External hard disk media | Seagate Portable USB Device
SDHC Card | Removable Media | SDHC Card