It seems like this should be in one of the .NET framework classes, but I haven't been able to find it. All I want to do is retrieve the volume label from a CD using C#. If anyone could kick me in the right direction I would greatly appreciate it. Thanks.
Glenn Wilson - 17 May 2004 02:06 GMT
Look at the system management classes, they use WMI, from there yo can get the volume label plus other information.
kayaker - 17 May 2004 17:41 GMT
Thanks Glenn. I was able to obtain it using the ManagementObject, specifically the GetText method and then parse for the VolumeName field.