- Trong trường hợp của bạn thì làm thế này
- Thường thì người ta sẽ Add tên các ổ đĩa ( partition ) chứ đâu ai chỉ Add LabelVolume của ổ đĩa.Code:private string GetDriverName ( string VolumeLabel ){ foreach ( string s in Directory.GetLogicalDrivers()){ DriverInfo DI = new DriverInfo(s); if ( DI.VolumeLabel == VolumeLabel) return DI.Name ; } return ""; }